@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
10 lines • 385 B
TypeScript
//#region src/components/Toolbar/Toolbar.constants.d.ts
declare enum Orientations {
Horizontal = "horizontal",
Vertical = "vertical"
}
declare const DEFAULT_ORIENTATION = Orientations.Horizontal;
declare const DEFAULT_ELEVATION = PaperElevations.Elevated;
//#endregion
export { DEFAULT_ELEVATION, DEFAULT_ORIENTATION, Orientations };
//# sourceMappingURL=Toolbar.constants.d.ts.map