UNPKG

@starter-ui/core

Version:

This is a UI Components built with the utility classes from Tailwind CSS.

12 lines (11 loc) 365 B
import { PropsWithChildren } from 'react'; interface Props { id?: string; className?: string; color?: string; size?: string; disabled?: boolean; outline?: boolean; } declare const Badge: ({ id, color, size, className, disabled, outline, children }: PropsWithChildren<Props>) => import("react/jsx-runtime").JSX.Element; export default Badge;