UNPKG
real-digital-clock
Version:
latest (7.0.0)
7.0.0
Classic 7-segment based real digital clock for react apps!
real-digital-clock
/
dist
/
types
/
components
/
SevenSegmentDigit
/
SevenSegmentDigit.d.ts
9 lines
(8 loc)
•
215 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
"react"
;
import
"../../styles.css"
;
interface
SevenSegmentDigitProps
{
digit
:
number
;
prefix
:
string
; }
export
declare
const
SevenSegmentDigit
:
React
.
FC
<
SevenSegmentDigitProps
>;
export
{};