security-checklist/components/Button/TwitterButton.js
2019-01-12 17:52:43 -08:00

15 lines
376 B
JavaScript

// @flow
import React from 'react';
import * as Styled from './style';
import Icon from '../Icon';
import type { ButtonProps } from './types';
export default function TwitterButton(props: ButtonProps) {
const { children } = props;
return (
<Styled.TwitterButton {...props}>
<Icon glyph="twitter" size={24} />
{children}
</Styled.TwitterButton>
);
}