UNPKG
@_alexalbu/kraftie-components
Version:
latest (2.0.2)
2.0.2
2.0.1
2.0.0
1.2.0
1.1.1
1.1.0
1.0.0
Kraftie Components Library
github.com/kraftie-co/components-library
kraftie-co/components-library
@_alexalbu/kraftie-components
/
components
/
Typography
/
Typography.styled.js
9 lines
(7 loc)
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
styled
from
'styled-components'
;
const
Text
= styled.
p
`
${({ theme }) => ({ ...theme.body })}
; color:
${({ theme }) => theme.textColor01}
;
${({ otherProps }) => ({ ...otherProps })}
; `
;
export
{
Text
};