UNPKG

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.

17 lines 506 B
import { type BadgeProps } from "../badge/badge"; interface Prices { label?: string; value: string; } export interface MenuItemProps { extra?: boolean; special?: boolean; photo?: boolean; name: string; description?: string; badges?: BadgeProps[]; prices: Prices[]; } export declare function MenuItem({ extra, special, photo, name, description, badges, prices, }: MenuItemProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=menu-item.d.ts.map