openpanel/documentation/src/refine-theme/icons/doc-item-outlined.tsx
2024-02-05 10:23:04 +01:00

24 lines
884 B
TypeScript

import React from "react";
export const DocItemOutlined = (props: React.SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
{...props}
>
<path
fill="currentColor"
d="M8.8 12.8a.8.8 0 0 1 .8-.8h4.8a.8.8 0 0 1 0 1.6H9.6a.8.8 0 0 1-.8-.8ZM9.6 15.2a.8.8 0 0 0 0 1.6H12a.8.8 0 0 0 0-1.6H9.6Z"
/>
<path
fill="currentColor"
fillRule="evenodd"
d="M5.6 6.4A2.4 2.4 0 0 1 8 4h4.937a2.4 2.4 0 0 1 1.697.703l3.063 3.063a2.4 2.4 0 0 1 .703 1.697V17.6A2.4 2.4 0 0 1 16 20H8a2.4 2.4 0 0 1-2.4-2.4V6.4ZM8 5.6a.8.8 0 0 0-.8.8v11.2a.8.8 0 0 0 .8.8h8a.8.8 0 0 0 .8-.8V9.463a.8.8 0 0 0-.234-.566l-3.063-3.063a.8.8 0 0 0-.566-.234H8Z"
clipRule="evenodd"
/>
</svg>
);