import React from 'react';
/**
*
* A dropdown component that allows you to select an icon from a list of
*
* Google icons.
*
* 
*
* We make use of a feature called ligatures that convert the snake cased name of
*
* an icon to an actual icon. It is achieved like so. Note that the classname
*
* "material-symbols-rounded" is necessary for this conversion to work.
*
* @example
*
* icon_name
* @endexample
* @example
*
* import IconPicker from "@bigbinary/neeto-molecules/IconPicker";
*
* const App = () => {
* const [value, setValue] = useState("home");
* return (
* setValue(value)}
* />
* );
* };
* @endexample
*/
declare const IconPicker: React.FC<{
filled?: boolean;
value?: string;
label?: string;
onClick?: Function;
className?: string;
}>;
export { IconPicker as default };