import type { PropType } from "vue"; import type { BadgeSize, BadgeTone, BadgeVariant } from "./Badge.types"; export const badgeProps = { tone: { type: String as PropType, default: "neutral", }, variant: { type: String as PropType, default: "soft", }, size: { type: String as PropType, default: "sm", }, };