@littlespoon/icons
Version:
Little Spoon icons
18 lines • 676 B
TypeScript
/// <reference types="react" />
export interface LogoutIconProps 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 LogoutIcon({ fill, stroke, size, ...other }: LogoutIconProps): React.ReactElement;
export declare const LogoutIconBase: import("styled-components").StyledComponent<"svg", any, LogoutIconProps, never>;
//# sourceMappingURL=LogoutIcon.d.ts.map