@littlespoon/icons
Version:
Little Spoon icons
33 lines (29 loc) • 772 B
Flow
/**
* Flowtype definitions for FilterIcon
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.21.0
* @flow
*/
import * as $Flowgen$Import$styled_2d_components from "styled-components";
export type FilterIconProps = {
/**
* 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,
...
} & React$SVGAttributes<SVGElement>;
declare export default function FilterIcon(x: FilterIconProps): React.Element<>;
declare export var FilterBase: $Flowgen$Import$styled_2d_components.StyledComponent<
"svg",
any,
FilterIconProps,
empty
>;