Sha256: 79b5f1b9e9e4d59953209ac82e5e864bd2cf5e8321c4899700268c116fe16b5e
Contents?: true
Size: 725 Bytes
Versions: 26
Compression:
Stored size: 725 Bytes
Contents
import React from 'react' import { Button } from '../../' const ButtonDefault = (props) => ( <div> <Button marginRight="xl" onClick={() => alert('button clicked!')} text="Button Primary" {...props} /> {' '} <Button onClick={() => alert('button clicked!')} text="Button Secondary" variant="secondary" {...props} /> {' '} <Button onClick={() => alert('button clicked!')} text="Button Link" variant="link" {...props} /> <Button disabled onClick={() => alert('button clicked!')} text="Button Disabled" {...props} /> </div> ) export default ButtonDefault
Version data entries
26 entries across 26 versions & 1 rubygems