import styled from "@emotion/styled"; import * as React from "react"; import { DARK_SECONDARY_TWO } from "../../../shared/colors"; import { PlatformProps } from "../../../shared/types"; import withPlatform from "../../platform/withPlatform"; type Props = {} & PlatformProps; function Help(props: Props) { return ( ); } export default withPlatform(Help); const Svg = styled.svg` height: 16px; width: 16px; fill: none; `; const Path = styled.path``;