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