class101-ui
Version:
A React-based UI Component Library, powered by Class101.
15 lines (14 loc) • 433 B
TypeScript
/// <reference types="react" />
interface Props {
value?: string;
items?: {
label?: string;
value: string;
}[];
color?: string;
backgroundColor?: string;
activeColor?: string;
activeBackgroundColor?: string;
}
declare const _default: ({ value, items, color, backgroundColor, activeBackgroundColor, activeColor, ...restProps }: Props) => JSX.Element;
export default _default;