UNPKG

react-7-segment-display-plus

Version:

A react component that simulates a 7-segment display

10 lines (9 loc) 230 B
import React from "react"; type DigitType = { char: string; color: string; height: number; skew: boolean; }; export declare const Digit: ({ char, color, height, skew, }: DigitType) => React.JSX.Element; export {};