UNPKG
ai-react-ui
Version:
latest (0.1.0)
0.1.0
An AI-friendly React UI component library
ai-react-ui
/
dist
/
components
/
Text.d.ts
12 lines
(11 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
"react"
;
import
{
Size
,
Weight
}
from
"../theme/types"
;
interface
TextProps
{
children
:
React
.
ReactNode
;
size
?:
Size
;
weight
?:
Weight
;
color
?:
string
;
style
?:
React
.
CSSProperties
; }
export
declare
const
Text
:
React
.
FC
<
TextProps
>;
export
{};