a tool for shared writing and social publishing
1import { Props } from "./Props";
2
3export const ArrowRightTiny = (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 {...props}
12 >
13 <path
14 fillRule="evenodd"
15 clipRule="evenodd"
16 d="M7.05487 2.30299L12.4568 8L7.05487 13.697C6.6718 14.101 6.05073 14.101 5.66767 13.697C5.2846 13.293 5.2846 12.638 5.66767 12.234L9.68238 8L5.66767 3.76597C5.2846 3.36198 5.2846 2.70698 5.66767 2.30299C6.05073 1.899 6.6718 1.899 7.05487 2.30299Z"
17 fill="currentColor"
18 />
19 </svg>
20 );
21};