a tool for shared writing and social publishing
1import { Props } from "./Props";
2
3export const ArrowDownTiny = (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="M13.697 7.05487L8 12.4568L2.30299 7.05487C1.899 6.6718 1.899 6.05073 2.30299 5.66767C2.70698 5.2846 3.36198 5.2846 3.76597 5.66767L8 9.68238L12.234 5.66767C12.638 5.2846 13.293 5.2846 13.697 5.66767C14.101 6.05073 14.101 6.6718 13.697 7.05487Z"
17 fill="currentColor"
18 />
19 </svg>
20 );
21};