import React from 'react';
import Text from 'terra-text';

const TextWeight = () => (
  <div>
    <Text id="textFontWeight700" weight={700}>700 Weight</Text>
    <br />
    <Text id="textFontWeight400" weight={400}>400 Weight</Text>
    <br />
    <Text id="textFontWeight300" weight={300}>300 Weight</Text>
    <br />
    <Text id="textFontWeight200" weight={200}>200 Weight</Text>
  </div>
);

export default TextWeight;
