security-checklist/components/Button/index.js

23 lines
514 B
JavaScript
Raw Normal View History

// @flow
import * as Styled from './style';
import Button from './Button';
import CopyLinkButton from './CopyLinkButton';
import FacebookButton from './FacebookButton';
import GhostButton from './GhostButton';
import OutlineButton from './OutlineButton';
import PrimaryButton from './PrimaryButton';
import TwitterButton from './TwitterButton';
const { ButtonRow } = Styled;
export {
Button,
CopyLinkButton,
FacebookButton,
GhostButton,
OutlineButton,
PrimaryButton,
TwitterButton,
ButtonRow,
};