24 lines
847 B
TypeScript
24 lines
847 B
TypeScript
import type { JSX, SVGProps } from 'react'
|
|
|
|
export const DocumentIcon = (
|
|
properties: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>,
|
|
) => {
|
|
return (
|
|
<svg
|
|
width={18}
|
|
height={19}
|
|
viewBox="0 0 18 19"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...properties}
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M5.857 1.61h6.286c2.317 0 3.607 1.335 3.607 3.623v7.747c0 2.325-1.29 3.63-3.607 3.63H5.857c-2.28 0-3.607-1.305-3.607-3.63V5.233c0-2.288 1.328-3.623 3.607-3.623zm.203 3.495v-.007h2.242a.588.588 0 010 1.178H6.06a.585.585 0 010-1.17zm0 4.56h5.88a.586.586 0 000-1.17H6.06a.586.586 0 000 1.17zm0 3.428h5.88c.3-.03.525-.286.525-.585a.588.588 0 00-.525-.593H6.06a.596.596 0 00-.563.908c.12.187.338.3.563.27z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|