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