UNPKG

@spectrum-web-components/icons-workflow

Version:

[Spectrum Workflow Icons](https://spectrum.adobe.com/page/icons/) delivered in a flexible template tag so that they can be leveraged across various frameworks. The default export of this package pre-applies the `html` template tag from `lit-html` for ease

33 lines (32 loc) 1.88 kB
/* Copyright 2020 Adobe. All rights reserved. This file is licensed to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import { tag as html } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; export const EmailNotificationIcon = ({ width = 24, height = 24, hidden = false, title = 'Email Notification', } = {}) => { return html `<svg xmlns="http://www.w3.org/2000/svg" height="${height}" viewBox="0 0 36 36" width="${width}" aria-hidden="${hidden ? 'true' : 'false'}" role="img" fill="currentColor" aria-label="${title}" > <path d="M20.576 28.545c.375-.381 1.254-1.27 1.254-5.854a4.825 4.825 0 012.47-4.215L22.866 17.4l-3.576 2.694a2.171 2.171 0 01-2.58 0l-3.628-2.719L0 27.068v1.765A1.147 1.147 0 001.125 30h18.48a4.107 4.107 0 01.971-1.455zm5.355-11.72a3.17 3.17 0 012.641-1.425h.855a3.156 3.156 0 013.121 2.547A4.957 4.957 0 0136 21.463V7.541l-11.221 8.422z" /> <path d="M36 4.665v-1.5A1.147 1.147 0 0034.875 2H1.125A1.147 1.147 0 000 3.167v1.468l18 13.553zM0 7.511v16.683l11.165-8.256L0 7.511zm36 23.566c0-1.077-2.429-.677-2.429-8.385 0-1.718-1.6-2.446-3.571-2.634V18.5a.539.539 0 00-.572-.5h-.857a.539.539 0 00-.572.5v1.558c-1.968.188-3.571.916-3.571 2.634C24.429 30.4 22 30.055 22 31.077v.844h4.667v.3a2.333 2.333 0 004.667 0v-.3H36z" /> </svg>`; }; //# sourceMappingURL=EmailNotification.js.map