UNPKG
cookie-test-app
Version:
latest (1.0.0)
1.0.0
testing
cookie-test-app
/
build
/
components
/
tag
/
Tag.d.ts
8 lines
(7 loc)
•
206 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
import
'./Tag.scss'
;
interface
TagProps
{
type
:
'mPerks'
|
'specialOffer'
|
'outOfStock'
|
'holidaySpecial'
; }
export
declare
const
Tag
:
React
.
FC
<
TagProps
>;
export
{};