hotelier-lib
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
16 lines (15 loc) • 583 B
TypeScript
/// <reference types="react" />
export declare const labels: {
value: string;
label: string;
}[];
export declare const statuses: {
value: string;
label: string;
icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
}[];
export declare const priorities: {
label: string;
value: string;
icon: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
}[];