33 lines
1.8 KiB
XML
33 lines
1.8 KiB
XML
const ScreenShareOnSVG = () => {
|
|
return (
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<mask
|
|
id="mask0_5675_17827"
|
|
style={{ maskType: 'alpha' }}
|
|
maskUnits="userSpaceOnUse"
|
|
x="0"
|
|
y="0"
|
|
width="24"
|
|
height="24"
|
|
>
|
|
<rect width="24" height="24" fill="#D9D9D9" />
|
|
</mask>
|
|
<g mask="url(#mask0_5675_17827)">
|
|
<path
|
|
d="M11.25 11.2192V14.9038C11.25 15.1166 11.3218 15.2948 11.4655 15.4385C11.609 15.582 11.7872 15.6538 12 15.6538C12.2128 15.6538 12.391 15.582 12.5345 15.4385C12.6782 15.2948 12.75 15.1166 12.75 14.9038V11.2345L14.073 12.5423C14.2218 12.6808 14.3959 12.7542 14.5953 12.7625C14.7946 12.7708 14.9718 12.6974 15.127 12.5423C15.282 12.3871 15.3595 12.2089 15.3595 12.0078C15.3595 11.8064 15.282 11.6282 15.127 11.473L12.6328 8.97875C12.4519 8.79808 12.241 8.70775 12 8.70775C11.759 8.70775 11.5481 8.79808 11.3673 8.97875L8.873 11.473C8.72433 11.6218 8.651 11.7959 8.653 11.9953C8.65483 12.1946 8.73333 12.3718 8.8885 12.527C9.04367 12.6718 9.21933 12.7468 9.4155 12.752C9.6115 12.757 9.78708 12.682 9.94225 12.527L11.25 11.2192ZM4.30775 18.5C3.80258 18.5 3.375 18.325 3.025 17.975C2.675 17.625 2.5 17.1974 2.5 16.6923V6.30775C2.5 5.80258 2.675 5.375 3.025 5.025C3.375 4.675 3.80258 4.5 4.30775 4.5H19.6923C20.1974 4.5 20.625 4.675 20.975 5.025C21.325 5.375 21.5 5.80258 21.5 6.30775V16.6923C21.5 17.1974 21.325 17.625 20.975 17.975C20.625 18.325 20.1974 18.5 19.6923 18.5H4.30775Z"
|
|
fill="white"
|
|
/>
|
|
<path
|
|
d="M7 21H17"
|
|
stroke="white"
|
|
stroke-width="1.5"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export { ScreenShareOnSVG };
|