5hQ2vw99Hd
Usage
import { useId } from 'svxui';
// Generates a 10 character id
const id = useId();
// Generates an ID with a custom number of characters
const id = useId(35);Type Definition
useId
export declare function useId(size?: number): string;