37 lines
1.5 KiB
Java
37 lines
1.5 KiB
Java
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var AudioTwoTone = {
|
|
name: 'audio',
|
|
theme: 'twotone',
|
|
icon: function (primaryColor, secondaryColor) {
|
|
return {
|
|
tag: 'svg',
|
|
attrs: { viewBox: '64 64 896 896', focusable: false },
|
|
children: [
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
fill: secondaryColor,
|
|
d: 'M512 552c54.3 0 98-43.2 98-96V232c0-52.8-43.7-96-98-96s-98 43.2-98 96v224c0 52.8 43.7 96 98 96z'
|
|
}
|
|
},
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
d: 'M842 454c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8 0 140.3-113.7 254-254 254S258 594.3 258 454c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8 0 168.7 126.6 307.9 290 327.6V884H326.7c-13.7 0-24.7 14.3-24.7 32v36c0 4.4 2.8 8 6.2 8h407.6c3.4 0 6.2-3.6 6.2-8v-36c0-17.7-11-32-24.7-32H548V782.1c165.3-18 294-158 294-328.1z',
|
|
fill: primaryColor
|
|
}
|
|
},
|
|
{
|
|
tag: 'path',
|
|
attrs: {
|
|
d: 'M512 624c93.9 0 170-75.2 170-168V232c0-92.8-76.1-168-170-168s-170 75.2-170 168v224c0 92.8 76.1 168 170 168zm-98-392c0-52.8 43.7-96 98-96s98 43.2 98 96v224c0 52.8-43.7 96-98 96s-98-43.2-98-96V232z',
|
|
fill: primaryColor
|
|
}
|
|
}
|
|
]
|
|
};
|
|
}
|
|
};
|
|
exports.default = AudioTwoTone;
|