Sha256: e0da40c67bd46c951e52806e28061ec67e9a711a896d577dc509b75838bcb289
Contents?: true
Size: 724 Bytes
Versions: 193
Compression:
Stored size: 724 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
193 entries across 193 versions & 1 rubygems