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