UNPKG

react-animated-menuicon

Version:
19 lines (18 loc) 415 B
export type TSizes = { [key: string]: string; }; export type OptionProps = { size?: string | undefined; type?: string | undefined; color?: string | undefined; }; declare const useMenuIcon: ({ size, type, color, }: OptionProps) => { open: boolean; toggleMenu: () => void; options: { size: string; type: string; color: string; }; }; export default useMenuIcon;