@littlespoon/icons
Version:
Little Spoon icons
18 lines • 682 B
TypeScript
/// <reference types="react" />
export interface AccountIconProps extends React.SVGAttributes<SVGElement> {
/**
* 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';
}
export default function AccountIcon({ fill, stroke, size, ...other }: AccountIconProps): React.ReactElement;
export declare const AccountIconBase: import("styled-components").StyledComponent<"svg", any, AccountIconProps, never>;
//# sourceMappingURL=AccountIcon.d.ts.map