UNPKG

@littlespoon/icons

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