UNPKG

webcoreui

Version:

UI component and template library for Astro, Svelte, and React apps styled with Sass.

14 lines (13 loc) 294 B
export type RadioProps<T extends object = object> = { items: { label: string value: string subText?: string selected?: boolean disabled?: boolean required?: boolean }[] color?: string inline?: boolean className?: string } & T