@real-system/text-primitive
v0.0.13
Published
Text primitive for real system.
Downloads
17
Readme
Usage
# install peer dependencies
# npm
$ npm install react react-dom @real-system/box-primitive @real-system/styling-library @real-system/theme-library @real-system/utils
# yarn
$ yarn add react react-dom @real-system/box-primitive @real-system/styling-library @real-system/theme-library @real-system/utils
# install text
# npm
$ npm install @real-system/text-primitive
# yarn
$ yarn add @real-system/text-primitive
Code Example
import { Text, TextPrimitiveProps, safelySpreadTextProps } from '@real-system/text-primitive';
const H1 = (props: TextPrimitiveProps) => (
<Text as="h1" fontSize={10} {...safelySpreadTextProps(props)}>
The quick brown fox jumped over the lazy dog.
</Text>
);