UNPKG

class101-ui

Version:

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

9 lines (8 loc) 255 B
/// <reference types="react" /> interface Props { color?: string; backgroundColor?: string; children?: any; } declare const _default: ({ children, color, backgroundColor, ...restProps }: Props) => JSX.Element; export default _default;