bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
9 lines (8 loc) • 393 B
TypeScript
export type RadiusElement = 'circle' | 'pill' | 'none' | 'sm' | 'md' | 'lg' | '0' | '1' | '2' | '3' | '4' | '5' | 0 | 1 | 2 | 3 | 4 | 5;
export type RadiusElementExtendables = {
rounded?: boolean | RadiusElement;
roundedTop?: boolean | RadiusElement;
roundedBottom?: boolean | RadiusElement;
roundedStart?: boolean | RadiusElement;
roundedEnd?: boolean | RadiusElement;
};