@dvcol/neo-svelte
Version:
Neomorphic ui library for svelte 5
23 lines (22 loc) • 499 B
JavaScript
export const NeoPlacements = {
Top: 'top',
TopStart: 'top-start',
TopEnd: 'top-end',
Bottom: 'bottom',
BottomStart: 'bottom-start',
BottomEnd: 'bottom-end',
Left: 'left',
LeftStart: 'left-start',
LeftEnd: 'left-end',
Right: 'right',
RightStart: 'right-start',
RightEnd: 'right-end',
};
export const NeoTooltipPlacements = {
...NeoPlacements,
Auto: 'auto',
};
export const NeoDialogPlacements = {
...NeoPlacements,
Center: 'center',
};