UNPKG
cookie-test-app
Version:
latest (1.0.0)
1.0.0
testing
cookie-test-app
/
build
/
components
/
price
/
Price.d.ts
11 lines
(10 loc)
•
235 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
import
'./Price.scss'
;
interface
PriceProps
{
hidden
?:
boolean
;
inverse
?:
boolean
;
savings
?:
boolean
;
small
?:
boolean
; }
export
declare
const
Price
:
React
.
FC
<
PriceProps
>;
export
{};