37 lines
1.5 KiB
Java
37 lines
1.5 KiB
Java
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var LeftSquareTwoTone = {
|
|
name: 'left-square',
|
|
theme: 'twotone',
|
|
icon: function (primaryColor, secondaryColor) {
|
|
return {
|
|
tag: 'svg',
|
|
attrs: { viewBox: '64 64 896 896', focusable: false },
|
|
children: [
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
fill: primaryColor,
|
|
d: 'M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656z'
|
|
}
|
|
},
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
fill: secondaryColor,
|
|
d: 'M184 840h656V184H184v656zm181.3-334.5l246-178c5.3-3.8 12.7 0 12.7 6.5v46.9c0 10.3-4.9 19.9-13.2 25.9L465.4 512l145.4 105.2c8.3 6 13.2 15.7 13.2 25.9V690c0 6.5-7.4 10.3-12.7 6.4l-246-178a7.95 7.95 0 0 1 0-12.9z'
|
|
}
|
|
},
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
fill: primaryColor,
|
|
d: 'M365.3 518.4l246 178c5.3 3.9 12.7.1 12.7-6.4v-46.9c0-10.2-4.9-19.9-13.2-25.9L465.4 512l145.4-105.2c8.3-6 13.2-15.6 13.2-25.9V334c0-6.5-7.4-10.3-12.7-6.5l-246 178a7.95 7.95 0 0 0 0 12.9z'
|
|
}
|
|
}
|
|
]
|
|
};
|
|
}
|
|
};
|
|
exports.default = LeftSquareTwoTone;
|