UNPKG
react-ally
Version:
latest (0.0.1-beta.2)
0.0.1-beta.2
0.0.1-beta.1
0.0.1-beta.0
Accessible react components
react-ally
/
src
/
spin-button
/
button.js
13 lines
(11 loc)
•
185 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
React
from
'react'
;
export
const
Button
= props => (
<
button
{
...props
}
aria-hidden
onMouseDown
=
{e
=>
{ e.preventDefault(); }} tabIndex={-1} />
);