UNPKG

zp-bee

Version:

zp-bee,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。

13 lines (12 loc) 573 B
import * as React from 'react'; import Group from './group'; import Button from './radioButton'; import { RadioProps } from './interface'; export { RadioGroupButtonStyle, RadioGroupOptionType, RadioGroupProps, RadioGroupContextProps, RadioProps, RadioChangeEventTarget, RadioChangeEvent, } from './interface'; interface CompoundedComponent extends React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLElement>> { Group: typeof Group; Button: typeof Button; } declare const Radio: CompoundedComponent; export { Button, Group }; export default Radio;