forked from github/plane
16 lines
872 B
TypeScript
16 lines
872 B
TypeScript
|
const InsertLeftTableIcon = (props: any) => (
|
||
|
<svg
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width={24}
|
||
|
height={24}
|
||
|
viewBox="0 -960 960 960"
|
||
|
{...props}
|
||
|
>
|
||
|
<path
|
||
|
d="M224.617-140.001q-30.307 0-51.307-21-21-21-21-51.308v-535.382q0-30.308 21-51.308t51.307-21H360q30.307 0 51.307 21 21 21 21 51.308v535.382q0 30.308-21 51.308t-51.307 21H224.617Zm375.383 0q-30.307 0-51.307-21-21-21-21-51.308v-535.382q0-30.308 21-51.308t51.307-21h135.383q30.307 0 51.307 21 21 21 21 51.308v535.382q0 30.308-21 51.308t-51.307 21H600Zm147.691-607.69q0-4.616-3.846-8.463-3.846-3.846-8.462-3.846H600q-4.616 0-8.462 3.846-3.847 3.847-3.847 8.463v535.382q0 4.616 3.847 8.463Q595.384-200 600-200h135.383q4.616 0 8.462-3.846 3.846-3.847 3.846-8.463v-535.382ZM587.691-200h160-160Z"
|
||
|
fill="rgb(var(--color-text-300))"
|
||
|
/>
|
||
|
</svg>
|
||
|
);
|
||
|
export default InsertLeftTableIcon;
|