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