sate-lib
Version:
A lightweight and modular React component library designed for modern web interfaces. **SATE Lib** powers the [sate.menu](https://sate.menu) platform with reusable, scalable, and themeable UI components.
16 lines • 471 B
TypeScript
import { BadgeProps } from "../badge/badge";
interface Prices {
label?: string;
value: string;
}
export interface MenuItemProps {
active?: boolean;
photo?: boolean;
name: string;
description?: string;
badges?: BadgeProps[];
prices: Prices[];
}
export declare function MenuItem({ active, photo, name, description, badges, prices, }: MenuItemProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=menu-item.d.ts.map