Vulcan/packages/vulcan-ui-bootstrap/lib/components/ui/Button.jsx

8 lines
318 B
React
Raw Normal View History

import React from 'react';
import Button from 'react-bootstrap/lib/Button';
import { registerComponent } from 'meteor/vulcan:lib';
const BootstrapButton = ({ children, variant, size, ...rest }) =>
<Button bsStyle={variant} bsSize={size} {...rest}>{children}</Button>
registerComponent('Button', BootstrapButton);