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

35 lines (34 loc) 1.65 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 SubscribeIcon = ({ width = 24, height = 24, hidden = false, title = 'Subscribe', } = {}) => { 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="M24.779 21.963L36 30.367V13.541l-11.221 8.422zM22.866 23.4l-3.576 2.694a2.172 2.172 0 01-2.58 0l-3.628-2.719L0 33.068A.981.981 0 001 34h34a.884.884 0 001-.756zm-11.701-1.462L0 13.511v16.684l11.165-8.257z" /> <path d="M19.067.672a2 2 0 00-2.133 0L0 11.365V14h6V9a1 1 0 011-1h22a1 1 0 011 1v5h6v-2.665z" /> <rect height="2" rx=".5" ry=".5" width="16" x="10" y="12" /> <path d="M21.83 20h-7.66a.5.5 0 01-.3-.1l-1.882-1.448a.25.25 0 01.147-.452h11.73a.25.25 0 01.152.448L22.135 19.9a.5.5 0 01-.305.1z" /> </svg>`; }; //# sourceMappingURL=Subscribe.js.map