import React from 'react'; import './Warning.scss'; interface WarningProps { highlighted?: boolean; } const Warning: React.SFC = ({ highlighted, children }) => { const className = `Warning ${highlighted ? 'highlighted' : ''}`; return (
{children}
); }; export default Warning;