UNPKG

@littlespoon/icons

Version:
35 lines (31 loc) 785 B
/** * Flowtype definitions for AccountIcon * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 * @flow */ import * as $Flowgen$Import$styled_2d_components from "styled-components"; export type AccountIconProps = { /** * The fill of the component. Defaults to black. */ fill?: string, /** * The stroke of the component. Defaults to null. */ stroke?: string, /** * The size of the component. Defaults to "small". */ size?: "xsmall" | "small" | "medium" | "large", ... } & React$SVGAttributes<SVGElement>; declare export default function AccountIcon( x: AccountIconProps ): React.Element<>; declare export var AccountIconBase: $Flowgen$Import$styled_2d_components.StyledComponent< "svg", any, AccountIconProps, empty >;