Text

Text

Text is the used to render text and paragraphs within an interface.

Import

import { Text } from '@unllamas/lacrypta-ui';

Usage


In love with React & Next

<Text>In love with React & Next</Text>

Text Size

The size property receives xs, sm, md or lg value

⚠️
Deprecados los valores small y normal

(lg) In love with React & Next

(md) In love with React & Next

(sm) In love with React & Next

(xs) In love with React & Next

<Text size='lg'>(lg) In love with React & Next</Text>
<Text size='md'>(md) In love with React & Next</Text>
<Text size='sm'>(sm) In love with React & Next</Text>
<Text size='xs'>(xs) In love with React & Next</Text>

Text Align

The align property receives left, center or right value


In love with React & Next

In love with React & Next

In love with React & Next

<Text align='left'>In love with React & Next</Text>
<Text align='center'>In love with React & Next</Text>
<Text align='right'>In love with React & Next</Text>

Text Color

The color property receives a hexadecimal value


In love with React & Next

<Text color="yellow">In love with React & Next</Text>