import styled, { useTheme } from 'styled-components'; import React from 'react'; interface Props { className?: string; } const SVGWrapper = styled.i` display: flex; `; const LiveIcon: React.FC = () => { const theme = useTheme(); return ( ); }; export default styled(LiveIcon)` position: absolute; left: 12px; top: 50%; transform: translateY(-50%); line-height: 0; `;