a tool for shared writing and social publishing
at main 453 B view raw
1import { Props } from "./Props"; 2 3export const GoBackTiny = (props: Props) => { 4 return ( 5 <svg 6 width="16" 7 height="16" 8 viewBox="0 0 16 16" 9 fill="none" 10 xmlns="http://www.w3.org/2000/svg" 11 > 12 <path 13 d="M7.40426 3L2.19592 8M2.19592 8L7.40426 13M2.19592 8H13.8041" 14 stroke="currentColor" 15 strokeWidth="2" 16 strokeLinecap="round" 17 strokeLinejoin="round" 18 /> 19 </svg> 20 ); 21};