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

30 lines (29 loc) 2.01 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 GraphStreamIcon = ({ width = 24, height = 24, hidden = false, title = 'Graph Stream', } = {}) => { 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 10c-4.947 0-5.356-6-10-6-4.213 0-5.9 6.567-12 7.788v2.85a16.034 16.034 0 006.336-2.128A11.374 11.374 0 0114 10.75a10.6 10.6 0 016.354 2.4A6.635 6.635 0 0024 14.75a14.535 14.535 0 004.082-.762A28.181 28.181 0 0134 12.843V6.165C29.646 6.916 28.346 10 24 10zm0 13.25a16.5 16.5 0 00-4.242.887A20.569 20.569 0 0114 25.25a29.526 29.526 0 01-7.283-1.033A33.457 33.457 0 002 23.349v2.832C6.329 26.956 9.168 30 14 30c3.46 0 7.064-2 10-2 2.637 0 4.518 3.217 10 3.875v-6.73a39.216 39.216 0 01-5.76-1.117A19.554 19.554 0 0024 23.25zm0-6c-2.094 0-3.6-1.035-5.061-2.035S16.076 13.25 14 13.25a9.131 9.131 0 00-4.5 1.471A18.469 18.469 0 012 17.149v3.688a34.9 34.9 0 015.293.946A27.036 27.036 0 0014 22.75a18.768 18.768 0 005.053-1.01A18.018 18.018 0 0124 20.75a21.058 21.058 0 014.848.852A38.535 38.535 0 0034 22.631v-7.289a25.875 25.875 0 00-5.232 1.048 16.625 16.625 0 01-4.768.86z" /> </svg>`; }; //# sourceMappingURL=GraphStream.js.map