37 lines
1.4 KiB
Java
37 lines
1.4 KiB
Java
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var MailTwoTone = {
|
|
name: 'mail',
|
|
theme: 'twotone',
|
|
icon: function (primaryColor, secondaryColor) {
|
|
return {
|
|
tag: 'svg',
|
|
attrs: { viewBox: '64 64 896 896', focusable: false },
|
|
children: [
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
fill: secondaryColor,
|
|
d: 'M477.5 536.3L135.9 270.7l-27.5-21.4 27.6 21.5V792h752V270.8L546.2 536.3a55.99 55.99 0 0 1-68.7 0z'
|
|
}
|
|
},
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
fill: secondaryColor,
|
|
d: 'M876.3 198.8l39.3 50.5-27.6 21.5 27.7-21.5-39.3-50.5z'
|
|
}
|
|
},
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
d: 'M928 160H96c-17.7 0-32 14.3-32 32v640c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-94.5 72.1L512 482 190.5 232.1h643zm54.5 38.7V792H136V270.8l-27.6-21.5 27.5 21.4 341.6 265.6a55.99 55.99 0 0 0 68.7 0L888 270.8l27.6-21.5-39.3-50.5h.1l39.3 50.5-27.7 21.5z',
|
|
fill: primaryColor
|
|
}
|
|
}
|
|
]
|
|
};
|
|
}
|
|
};
|
|
exports.default = MailTwoTone;
|