summaryrefslogtreecommitdiff
path: root/src/components/elements/DescriptionRow.js
blob: 7fe9e3a1ad99e24684fdd32c1c99cc1c451af824 (plain)
1
2
3
4
5
6
7
8
9
10
const DescriptionRow = ({ label, children }) => (
  <div className="grid grid-cols-2">
    <p className="leading-normal text-gray_r-11">{ label }</p>
    <div className="text-right leading-normal">
      { children }
    </div>
  </div>
);

export default DescriptionRow;