UNPKG
@onethousandswaps-libs/uikit
Version:
latest (1.0.0)
1.0.0
User interface package for One THousand Swaps apps
@onethousandswaps-libs/uikit
/
components
/
Text
/
types.ts
10 lines
(8 loc)
•
265 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
SpaceProps
,
TypographyProps
}
from
"styled-system"
;
export
interface
TextProps
extends
SpaceProps
,
TypographyProps
{
color
?:
string
;
fontSize
?:
string
;
bold
?:
boolean
;
small
?:
boolean
;
textTransform
?:
"uppercase"
|
"lowercase"
|
"capitalize"
; }