diff --git a/web/components/modal-label.css b/web/components/modal-label.css new file mode 100644 --- /dev/null +++ b/web/components/modal-label.css @@ -0,0 +1,4 @@ +.label { + padding: 2rem 0; + color: var(--shades-black-60); +} diff --git a/web/components/modal-label.react.js b/web/components/modal-label.react.js new file mode 100644 --- /dev/null +++ b/web/components/modal-label.react.js @@ -0,0 +1,17 @@ +// @flow + +import * as React from 'React'; + +import css from './modal-label.css'; + +type Props = { + +content: string, +}; + +function ModalLabel(props: Props): React.Node { + const { content } = props; + + return
{content}
; +} + +export default ModalLabel;