UNPKG

@nuxt/ui

Version:

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

52 lines (51 loc) 859 B
const size = [ "3xs", "2xs", "xs", "sm", "md", "lg", "xl", "2xl", "3xl" ] as const export default { "slots": { "root": "inline-flex flex-row-reverse justify-end", "base": "relative rounded-full ring-(--ui-bg) first:me-0" }, "variants": { "size": { "3xs": { "base": "ring -me-0.5" }, "2xs": { "base": "ring -me-0.5" }, "xs": { "base": "ring -me-0.5" }, "sm": { "base": "ring-2 -me-1.5" }, "md": { "base": "ring-2 -me-1.5" }, "lg": { "base": "ring-2 -me-1.5" }, "xl": { "base": "ring-3 -me-2" }, "2xl": { "base": "ring-3 -me-2" }, "3xl": { "base": "ring-3 -me-2" } } }, "defaultVariants": { "size": "md" as typeof size[number] } }