UNPKG

retabler

Version:

React Component library via Tabler

12 lines (11 loc) 338 B
/// <reference types="react" /> import { Color } from "../common"; export interface CardStatusProps { color: Color; top?: boolean; right?: boolean; bottom?: boolean; left?: boolean; } declare function CardStatus({ color, top, right, bottom, left }: CardStatusProps): JSX.Element; export default CardStatus;