@buffetjs/styles
Version:
Buffetjs Styles - The styling solution of Buffetjs
18 lines (13 loc) • 285 B
JavaScript
/**
*
* Icon
*
*/
import styled from 'styled-components';
import PropTypes from 'prop-types';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
const Icon = styled(FontAwesomeIcon)``;
Icon.propTypes = {
icon: PropTypes.any.isRequired,
};
export default Icon;