UNPKG

hh-ui-components

Version:
15 lines (14 loc) 322 B
import { FC } from "react"; export interface GiftBoxProps { title?: string; size?: any; price?: number; discountedPrice?: number; quantity?: number; img?: any; color?: string; tag?: string; onClick?: () => void; } export declare const GiftBox: FC<GiftBoxProps>; export default GiftBox;