Sha256: 420b3d9dba24f2bd6ff942f8a6ea2c6fd645031a85be4744b3517da34cc10b0b
Contents?: true
Size: 925 Bytes
Versions: 50
Compression:
Stored size: 925 Bytes
Contents
import React from 'react' import { Button, ButtonToolbar } from '../..' const ButtonToolbarDefault = (props) => ( <div className="pb--doc-demo-row"> <ButtonToolbar {...props} orientation="vertical" > <Button {...props} text="Create" /> <Button {...props} text="Edit" /> <Button {...props} text="Copy" /> <Button {...props} text="Cut" /> </ButtonToolbar> <ButtonToolbar {...props} orientation="horizontal" > <Button {...props} text="Create" /> <Button {...props} text="Edit" /> <Button {...props} text="Copy" /> <Button {...props} text="Cut" /> </ButtonToolbar> </div> ) export default ButtonToolbarDefault
Version data entries
50 entries across 50 versions & 1 rubygems