UNPKG

nexpi-ui

Version:

An elegant and minimalist Next.js 14 component library

12 lines (11 loc) 257 B
import React from 'react'; interface RadioElement { value: string; label: string; name: string; } interface RadioProps { options: RadioElement[]; } declare const Radio: ({ options }: RadioProps) => React.JSX.Element[]; export default Radio;