1
1
mirror of https://github.com/primer/css.git synced 2024-09-20 13:17:29 +03:00

nix form.p-4

This commit is contained in:
Shawn Allen 2017-09-12 13:19:47 -07:00
parent 15a4016baa
commit 470662f103

View File

@ -2,19 +2,17 @@ import React from 'react'
import {Octicon} from '../../../.storybook/Octicon'
export default () => (
<form className="p-4">
<div className="input-group">
<input
className="form-control"
type="text"
placeholder="Username"
aria-label="Username"
/>
<span className="input-group-button">
<button className="btn" type="button" aria-label="Copy to clipboard">
<Octicon name="clippy" />
</button>
</span>
</div>
</form>
<div className="input-group">
<input
className="form-control"
type="text"
placeholder="Username"
aria-label="Username"
/>
<span className="input-group-button">
<button className="btn" type="button" aria-label="Copy to clipboard">
<Octicon name="clippy" />
</button>
</span>
</div>
)