UNPKG

@bottledbrains/ui

Version:

A React UI library based on Tailwind CSS

12 lines (11 loc) 295 B
import { CSSProperties, MouseEventHandler } from "react"; export interface CommonProps { id?: string; className?: string; style?: CSSProperties; onClick?: MouseEventHandler; } export interface CommonControlProps extends CommonProps { name?: string; disabled?: boolean; }