mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 14:28:20 +01:00
20 lines
623 B
TypeScript
20 lines
623 B
TypeScript
import type { ComponentPropsWithoutRef } from "react";
|
|
|
|
export function ListIcon(props: ComponentPropsWithoutRef<"svg">) {
|
|
return (
|
|
<svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M2.5 4.5a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2v-11Z"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M6.5 6.5h7M6.5 13.5h7M6.5 10h7"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|