UNPKG

class101-ui

Version:

A React-based UI Component Library, powered by Class101.

10 lines (9 loc) 288 B
/// <reference types="react" /> interface Props { value?: number; backgroundColor?: string; barColor?: string; height?: number; } declare const _default: ({ value, height, backgroundColor, barColor, ...restProps }: Props) => JSX.Element; export default _default;