README

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

{
    'fontFamily':'Roboto',
    'fontWeight':'400',
    'fontSize':34,
    'letterSpacing': 0.25
 };

Compatibility

🌏 Web

🖥 Electron

📱 React Native

✔️

✔️

Screenshots

🌏 Web

🖥 Electron

📱 React Native

TBD

TBD

Props

Name

Type

Default

Description

children

string

The text to show with H4 heading style

Screenshots

🌏 Web

🖥 Electron

📱 React Native

TBD

TBD

How to use

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

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

const H4Sample = (props) => (
       <H4>H4 Typography</H4>
    );
export default H4Sample;

Last updated