Sha256: 300171a9b04c07f4fbd8daf5239dda137e68c8080128035d4737fc93b0e740ee
Contents?: true
Size: 709 Bytes
Versions: 817
Compression:
Stored size: 709 Bytes
Contents
import React from 'react' import { Button } from '../../' const ButtonLoading = (props) => ( <div> <Button aria={{ label: 'Loading' }} loading marginRight='lg' text="Button Primary" {...props} /> {' '} <Button aria={{ label: 'Loading' }} loading marginRight='lg' tabIndex={0} text="Button Secondary" variant="secondary" {...props} /> {' '} <Button aria={{ label: 'Loading' }} loading marginRight='lg' tabIndex={0} text="A Tag Button Disabled" variant="link" {...props} /> </div> ) export default ButtonLoading
Version data entries
817 entries across 817 versions & 2 rubygems