README

Typography component for h6 headings. It applies following styles. Styles are fixed, cannot be overriden.

{
    'fontFamily':'Roboto',
    'fontWeight':500,
    'fontSize':20,
    'letterSpacing': 0.15
 }

Compatibility

Screenshots

Props

How to use

import React from 'react';
import BR from '@blueeast/bluerain-os';

const H6 = BR.Components.get('H6');

const H6Sample = (props) => (
       <H6>H6 Typography</H6>
    );
export default H6Sample;

Last updated