import * as React from 'react' import Svg, { Ellipse, Path } from 'svgs' interface Props { height?: number width?: number } export default class GuideKeyIcon extends React.PureComponent { static defaultProps = { height: 115, width: 154, } render() { return ( ) } }