import styled from "@emotion/styled"; import * as React from "react"; type Props = { style?: any; }; function Tag(props: Props) { return ( ); } export default Tag; const Svg = styled.svg``;