Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import * as React from "react"; import { SvgProps } from "./"; export const ReverseOutlineThree: React.FunctionComponent<SvgProps> = (props) => { return ( <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="8.99963" cy="9.04729" rx="7.5" ry="7.53947" fill={props.color || "#AAAAB5"} /> <path d="M9.00851 12.6072C10.4929 12.6072 11.5831 11.7195 11.5795 10.5121C11.5831 9.59233 11.0256 8.93182 10.0596 8.78267V8.72585C10.8196 8.53054 11.3132 7.93395 11.3096 7.11719C11.3132 6.0483 10.4361 5.13565 9.03692 5.13565C7.70169 5.13565 6.62925 5.94176 6.59374 7.12429H7.65553C7.68039 6.45668 8.30894 6.05185 9.02272 6.05185C9.7649 6.05185 10.2514 6.50284 10.2479 7.17401C10.2514 7.87713 9.68678 8.33878 8.88067 8.33878H8.26632V9.23366H8.88067C9.88919 9.23366 10.4716 9.74503 10.4716 10.4766C10.4716 11.1832 9.85723 11.6626 9.00141 11.6626C8.21306 11.6626 7.59871 11.2578 7.5561 10.6115H6.44104C6.4872 11.7976 7.53834 12.6072 9.00851 12.6072Z" fill="white" /> </svg> ); }; |