import React from 'react'; import { black, Flex, WrapperProps } from 'dot-design-system'; interface Props extends WrapperProps { elevated?: boolean; } function CircleIcon({ elevated = false, css: cssProp, ...props }: Props) { return ( ); } export default CircleIcon;