27 lines
1.0 KiB
Java
27 lines
1.0 KiB
Java
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var DeleteTwoTone = {
|
|
name: 'delete',
|
|
theme: 'twotone',
|
|
icon: function (primaryColor, secondaryColor) {
|
|
return {
|
|
tag: 'svg',
|
|
attrs: { viewBox: '64 64 896 896', focusable: false },
|
|
children: [
|
|
{
|
|
tag: 'path',
|
|
attrs: { fill: secondaryColor, d: 'M292.7 840h438.6l24.2-512h-487z' }
|
|
},
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
d: 'M864 256H736v-80c0-35.3-28.7-64-64-64H352c-35.3 0-64 28.7-64 64v80H160c-17.7 0-32 14.3-32 32v32c0 4.4 3.6 8 8 8h60.4l24.7 523c1.6 34.1 29.8 61 63.9 61h454c34.2 0 62.3-26.8 63.9-61l24.7-523H888c4.4 0 8-3.6 8-8v-32c0-17.7-14.3-32-32-32zm-504-72h304v72H360v-72zm371.3 656H292.7l-24.2-512h487l-24.2 512z',
|
|
fill: primaryColor
|
|
}
|
|
}
|
|
]
|
|
};
|
|
}
|
|
};
|
|
exports.default = DeleteTwoTone;
|