// @flow import * as React from "react"; type Props = { size?: number, fill?: string, className?: string, }; function OutlineLogo({ size = 32, fill = "#333", className }: Props) { return ( ); } export default OutlineLogo;