@ultraviolet/plus
Version:
Ultraviolet Plus
9 lines (8 loc) • 329 B
TypeScript
type UnitProps = {
amount?: number;
itemCallback?: (amount?: number, isVariant?: boolean) => void;
getAmountValue?: (amount?: number) => void;
unit?: string;
};
export declare const Unit: ({ amount, itemCallback, getAmountValue, unit, }: UnitProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};