Sha256: 39b9a3cad3488b425b12f96f76c83e21771035a9b58eba9ddcf3209b26f1a68e

Contents?: true

Size: 490 Bytes

Versions: 1

Compression:

Stored size: 490 Bytes

Contents

import React from 'react'
import { Button } from '../../'

const ButtonIconOptions = (props) => (
    <div>
      <Button
          fixedWidth
          icon='plus'
          marginRight='lg'
          text="Icon on Left"
          {...props}
      />
      {' '}
      <Button
          fixedWidth
          icon='chevron-right'
          iconRight
          marginRight='lg'
          text="Icon on Right"
          {...props}
      />
    </div>
  )
  
  export default ButtonIconOptions

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
playbook_ui-11.20.0.pre.alpha.focus1 app/pb_kits/playbook/pb_button/docs/_button_icon_options.jsx