mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
15 lines
380 B
JavaScript
15 lines
380 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import * as Styled from './style';
|
|
import Icon from '../Icon';
|
|
import type { ButtonProps } from './types';
|
|
|
|
export default function FacebookButton(props: ButtonProps) {
|
|
const { children } = props;
|
|
return (
|
|
<Styled.FacebookButton {...props}>
|
|
<Icon glyph="facebook" size={24} />
|
|
{children}
|
|
</Styled.FacebookButton>
|
|
);
|
|
}
|