Styling inputs

This commit is contained in:
2018-05-15 08:43:07 +10:00
parent d8b1c41538
commit 7500de1649
7 changed files with 46 additions and 6 deletions

View File

@ -25,7 +25,7 @@ import React from 'react';
export default function(props) {
return (
<div {...props} class={"o-btn-group" + (props.className ? " "+props.className : "")}>
<div {...props} className={"o-btn-group" + (props.className ? " "+props.className : "")}>
{props.children}
</div>
);