UNPKG

react-icon-blur

Version:
13 lines (12 loc) 318 B
/// <reference types="react" /> import './styles.scss'; interface IconProps { type: 'ROUNDED' | 'SQUARE' | 'CIRCLE'; src: string; size: number; padding: number; name?: string; onClick?: Function; } declare const IconBlur: (props: IconProps) => JSX.Element; export default IconBlur;