import React from 'react'; import styled from 'styled-components'; const WarningIconContainer = styled.span` align-items: center; display: inline-flex; justify-content: center; height: 1.5rem; width: 1.5rem; `; const WarningIcon: React.FC = () => { return ( ); }; export default WarningIcon;