openreplay/frontend/app/components/ui/Icons/book_doc.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

27 lines
1.2 KiB
TypeScript

/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Book_doc(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 17 17" width={`${width}px`} height={`${height}px`}>
<g>
<path d="M1.5 3.328c.885-.37 2.154-.769 3.388-.893 1.33-.134 2.458.063 3.112.752v9.746c-.935-.53-2.12-.603-3.213-.493-1.18.12-2.37.461-3.287.811V3.328ZM9 3.187c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V3.187Zm-.5-.904c-.985-.847-2.413-.973-3.713-.843-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 .5 3v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16.5 14V3a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105-1.3-.131-2.728-.004-3.713.843Z" />
</g>
<defs>
<clipPath id="a">
<path fill="#fff" transform="translate(.5 .5)" d="M0 0h16v16H0z" />
</clipPath>
</defs>
</svg>
);
}
export default Book_doc;