Code
Props
Props
Data Type
Required
How to Use
import React from 'react';
import {Text} from '@2600hz/sds-react-components';
const Example = ()=>{
return(
<div className='container'>
<Text.h1 textStyle='Title1' >This is a title</Text.h1>
<Text.p textStyle='Body'>
This is a random text for a paragraph
</Text.p>
</div>
)
}
export default Example;
Live Demo
React
Last updated