@littlespoon/icons
Version:
Little Spoon icons
14 lines • 589 B
TypeScript
/// <reference types="react" />
export interface GiftCardIconProps extends React.SVGAttributes<SVGElement> {
/**
* The fill of the component. Defaults to black.
*/
fill?: string;
/**
* The size of the component. Defaults to "small".
*/
size?: 'xsmall' | 'small' | 'medium' | 'large';
}
export default function GiftCardIcon({ fill, size, ...other }: GiftCardIconProps): React.ReactElement;
export declare const GiftCardIconBase: import("styled-components").StyledComponent<"svg", any, GiftCardIconProps, never>;
//# sourceMappingURL=GiftCardIcon.d.ts.map