Sha256: fe942f5f52b1274b0961b3b7eac2f85a9d4cfeab70a3dee64d18056e2f280f15
Contents?: true
Size: 558 Bytes
Versions: 948
Compression:
Stored size: 558 Bytes
Contents
import React from 'react' import { Button } from 'playbook-ui' const ButtonSize = (props) => ( <div> <Button marginRight='lg' size="sm" tabIndex={0} text="Button sm size" {...props} /> {' '} <Button marginRight='lg' size="md" tabIndex={0} text="Button md size" {...props} /> {' '} <Button marginRight='lg' size="lg" tabIndex={0} text="Button lg size" {...props} /> </div> ) export default ButtonSize
Version data entries
948 entries across 948 versions & 2 rubygems