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