import { Card } from '@automattic/components'; import { PureComponent } from 'react'; import CardHeading from 'calypso/components/card-heading'; export default class CardHeadingExample extends PureComponent { static displayName = 'CardHeadingExample'; render() { return ( This is a default CardHeading at 20px This is a CardHeading, H1 at 54px This is a CardHeading, H2 at 48px This is a CardHeading, H3 at 36px This is a CardHeading, H4 at 32px This is a CardHeading, H5 at 24px This is a CardHeading, H6 at 16px ); } }