UNPKG

react-7-segment-display-plus

Version:

A react component that simulates a 7-segment display

12 lines (11 loc) 308 B
import React from "react"; type DisplayType = { count: number; height: number; value: any; color: string; backgroundColor?: string; skew: boolean; }; export declare const Display: ({ count, height, value, color, backgroundColor, skew, }: DisplayType) => React.JSX.Element; export {};