Sha256: 514f1bb8d17e8420aa7fa0c041b8d360b111c1137e02428731967f2abb04529f
Contents?: true
Size: 797 Bytes
Versions: 43
Compression:
Stored size: 797 Bytes
Contents
import React from 'react' import { Button } from '../../' const ButtonLink = (props) => ( <div> <Button aria={{ label: 'Link to Google' }} link="https://google.com" marginRight='lg' tabIndex={0} text="A Tag Button" {...props} /> {' '} <Button aria={{ label: 'Link to Google in new window' }} link="https://google.com" marginRight='lg' newWindow tabIndex={0} text="Open in New Window" {...props} /> {' '} <Button aria={{ label: 'Disabled link to Google' }} disabled link="https://google.com" marginRight='lg' tabIndex={0} text="A Tag Button Disabled" {...props} /> </div> ) export default ButtonLink
Version data entries
43 entries across 43 versions & 1 rubygems