@myissue/vue-website-page-builder
Version:
Vue 3 page builder component with drag & drop functionality.
68 lines (65 loc) • 1.44 kB
text/typescript
interface TailwindBorderRadius {
roundedGlobal: string[]
roundedTopLeft: string[]
roundedTopRight: string[]
roundedBottomLeft: string[]
roundedBottomRight: string[]
}
const tailwindBorderRadius: TailwindBorderRadius = {
roundedGlobal: [
'none',
'pbx-rounded-sm',
'pbx-rounded',
'pbx-rounded-md',
'pbx-rounded-lg',
'pbx-rounded-xl',
'pbx-rounded-2xl',
'pbx-rounded-3xl',
'pbx-rounded-full',
],
roundedTopLeft: [
'none',
'pbx-rounded-tl-sm',
'pbx-rounded-tl',
'pbx-rounded-tl-md',
'pbx-rounded-tl-lg',
'pbx-rounded-tl-xl',
'pbx-rounded-tl-2xl',
'pbx-rounded-tl-3xl',
'pbx-rounded-tl-full',
],
roundedTopRight: [
'none',
'pbx-rounded-tr-sm',
'pbx-rounded-tr',
'pbx-rounded-tr-md',
'pbx-rounded-tr-lg',
'pbx-rounded-tr-xl',
'pbx-rounded-tr-2xl',
'pbx-rounded-tr-3xl',
'pbx-rounded-tr-full',
],
roundedBottomLeft: [
'none',
'pbx-rounded-bl-sm',
'pbx-rounded-bl',
'pbx-rounded-bl-md',
'pbx-rounded-bl-lg',
'pbx-rounded-bl-xl',
'pbx-rounded-bl-2xl',
'pbx-rounded-bl-3xl',
'pbx-rounded-bl-full',
],
roundedBottomRight: [
'none',
'pbx-rounded-br-sm',
'pbx-rounded-br',
'pbx-rounded-br-md',
'pbx-rounded-br-lg',
'pbx-rounded-br-xl',
'pbx-rounded-br-2xl',
'pbx-rounded-br-3xl',
'pbx-rounded-br-full',
],
}
export default tailwindBorderRadius