Added BlockHeading component

• Added:
- BlockHeading component
This commit is contained in:
mgabdev 2020-08-06 23:08:32 -05:00
parent 4f07bfefe0
commit 60df345131
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
import Heading from './heading'
export default class BlockHeading extends PureComponent {
static propTypes = {
title: PropTypes.string.isRequired,
}
render() {
const { title } = this.props
return (
<div className={[_s.default, _s.px15, _s.py10].join(' ')}>
<div className={[_s.default, _s.flexRow, _s.alignItemsCenter].join(' ')}>
<Heading size='h2'>{title}</Heading>
</div>
</div>
)
}
}