azlan-ui-components-library
Version:
Reusable UI components
13 lines (12 loc) • 334 B
TypeScript
import * as React from 'react';
import '../styles/index.css';
type CardProps = {
id: string;
title: string;
description: string;
price: number;
category: string;
imageUrl: string;
};
export declare const Card: ({ id, imageUrl, title, category, price, description }: CardProps) => React.JSX.Element;
export {};