Sha256: bfc670b6daff33f286cf179582f0534cb69d3cce096621ba1733db600960f451
Contents?: true
Size: 1.03 KB
Versions: 1007
Compression:
Stored size: 1.03 KB
Contents
import React from 'react' import { Button } from 'playbook-ui' const ButtonLink = (props) => ( <> <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: 'Link to Playbook in new window' }} link="https://playbook.powerapp.cloud/" marginRight='lg' tabIndex={0} target='child' text="Open in a Child Tab" {...props} /> {' '} <Button aria={{ label: 'Disabled link to Google' }} disabled link="https://google.com" marginRight='lg' tabIndex={0} text="A Tag Button Disabled" {...props} /> </> ) export default ButtonLink
Version data entries
1,007 entries across 1,007 versions & 2 rubygems