import * as React from 'react'; import styled from 'styled-components'; interface ExclamationProps { color: string; } const ExclamationIconWrapper = styled.div` width: 20px; height: 20px; `; function ExclamationIcon({ color }: ExclamationProps) { return ( ); } export default ExclamationIcon;