UNPKG

@littlespoon/icons

Version:
18 lines 673 B
/// <reference types="react" /> export interface FilterIconProps extends React.SVGAttributes<SVGElement> { /** * The fill of the component. Defaults to white. */ fill?: string; /** * The size of the component. Defaults to "small". */ size?: 'xsmall' | 'small' | 'medium' | 'large'; /** * The stroke of the component. Defaults to black. */ stroke?: string; } export default function FilterIcon({ fill, size, stroke, ...other }: FilterIconProps): React.ReactElement; export declare const FilterBase: import("styled-components").StyledComponent<"svg", any, FilterIconProps, never>; //# sourceMappingURL=FilterIcon.d.ts.map