@10up/block-components
Version:
10up Components built for the WordPress Block Editor.
18 lines • 335 B
TypeScript
/// <reference types="react" />
interface IconProps {
/**
* Name of the icon
*/
name: string;
/**
* Name of the icon set
*/
iconSet: string;
/**
* Click handler
*/
onClick?: () => void;
}
export declare const Icon: React.FC<IconProps>;
export {};
//# sourceMappingURL=icon.d.ts.map