import React from 'react'; import PropTypes from 'prop-types'; export default function Sign({ className, size, color }) { return ( ); } Sign.propTypes = { /** * Additional className */ className: PropTypes.string, /** * Size of the icon should adhere to 8px grid. e.g: 8, 16, 24, 32, 40 and is required */ size: PropTypes.number.isRequired, /** * Color of the icon should be a valid design system color and is required */ color: PropTypes.string.isRequired, };