UNPKG

hh-ui-components

Version:
13 lines (12 loc) 306 B
import { FC } from "react"; export interface SingleGiftItemProps { title?: string; price?: number; discountedPrice?: number; img?: any; colors?: any; onClick?: () => void; tag?: any; } export declare const SingleGiftItem: FC<SingleGiftItemProps>; export default SingleGiftItem;