-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathPrivateFile.tsx
More file actions
25 lines (24 loc) · 1.25 KB
/
PrivateFile.tsx
File metadata and controls
25 lines (24 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React from 'react';
export const PrivateFile = (props: React.SVGProps<SVGSVGElement>) => (
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" {...props}>
<g clip-path="url(#clip0_2339_7111)">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M19 8V21H5V3H12H14V7.25C14 7.66421 14.3358 8 14.75 8H19ZM21 7.09725V7H20.9803C20.9693 6.97387 20.9538 6.94958 20.9343 6.92831L15.5743 1.08107C15.527 1.02941 15.4601 1 15.39 1H15H14H12H3.25C3.11193 1 3 1.11193 3 1.25V22.75C3 22.8881 3.11193 23 3.25 23H20.75C20.8881 23 21 22.8881 21 22.75V8V7.09725ZM15 3.41433L18.2869 7H15V3.41433Z"
fill="currentColor"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M10.5 11C10.5 10.1716 11.1716 9.5 12 9.5C12.8284 9.5 13.5 10.1716 13.5 11V12.5H10.5V11ZM8.5 12.5V11C8.5 9.067 10.067 7.5 12 7.5C13.933 7.5 15.5 9.067 15.5 11V12.5C16.0523 12.5 16.5 12.9477 16.5 13.5V19C16.5 19.5523 16.0523 20 15.5 20H8.5C7.94772 20 7.5 19.5523 7.5 19V13.5C7.5 12.9477 7.94772 12.5 8.5 12.5ZM9.5 18V14.5H14.5V18H9.5Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_2339_7111">
<rect width="24" height="24" fill="white" fillOpacity="0" />
</clipPath>
</defs>
</svg>
);