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.96 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 AmusementparkIcon = ({ width = 24, height = 24, hidden = false, title = 'Amusementpark', } = {}) => { return html `<svg xmlns="http://www.w3.org/2000/svg" width="${width}" height="${height}" viewBox="0 0 36 36" aria-hidden="${hidden ? 'true' : 'false'}" role="img" fill="currentColor" aria-label="${title}" > <path d="M28.371 22a10.71 10.71 0 00-6.969 3.093C17.804 20.944 14.02 16 7.896 16a12.449 12.449 0 00-5.285 1.266 1.001 1.001 0 00-.611.922V33.5a.5.5 0 00.5.5h1a.5.5 0 00.5-.5V18.854a9.847 9.847 0 012-.648V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5V18.287a9.497 9.497 0 012 .761V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5V22.082c.683.682 1.35 1.398 2 2.14V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-4.805a19.68 19.68 0 002 1.778V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-1.537a5.035 5.035 0 002-.17V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-6.646C34 23.995 31.212 22 28.371 22zm3.634 4.915A3.313 3.313 0 0128.452 30c-1.414 0-2.645-.103-5.722-3.418A9.369 9.369 0 0128.361 24c1.805 0 3.644 1.179 3.644 2.915zM35.993 13a2 2 0 01-2 2 1.86 1.86 0 01-.19-.039 10.912 10.912 0 01-1.095 3.183 1.959 1.959 0 011.092 2.689 9.1 9.1 0 00-4.22-1.733 8.95 8.95 0 002.37-5.601h-6.66a.5.5 0 010-1h6.659a8.92 8.92 0 00-2.267-5.477l-4.71 4.71a.5.5 0 01-.707-.707l4.71-4.71A8.92 8.92 0 0023.5 4.05v6.659a.5.5 0 01-1 0V4.05a8.92 8.92 0 00-5.476 2.266l4.71 4.71a.5.5 0 11-.707.707l-4.71-4.71A8.92 8.92 0 0014.05 12.5h6.659a.5.5 0 010 1H14.05c.027.332.046.665.1.989a14.108 14.108 0 00-5.138-1.395c-.001-.033-.019-.06-.019-.094a2 2 0 012-2 1.949 1.949 0 011.13.395c.03-.203.053-.409.094-.608a10.89 10.89 0 011.8-4.078A1.973 1.973 0 0112.993 5a2 2 0 012-2 1.974 1.974 0 011.711 1.026 10.885 10.885 0 014.326-1.844c-.006-.063-.037-.117-.037-.182a2 2 0 014 0 1.88 1.88 0 01-.039.192 10.925 10.925 0 014.343 1.812A1.972 1.972 0 0130.993 3a2 2 0 012 2 1.972 1.972 0 01-1.004 1.696 10.924 10.924 0 011.812 4.343 1.878 1.878 0 01.192-.039 2 2 0 012 2zm-7.58 6.12l-4.147-4.146a.5.5 0 01.707-.707l4.146 4.145a.5.5 0 11-.707.707zM23 21.464a.501.501 0 01-.5-.5V15.29a.5.5 0 011 0v5.674a.501.501 0 01-.5.5zm-4.92-3.045a.5.5 0 01-.353-.854l3.3-3.3a.5.5 0 01.707.708l-3.3 3.3a.5.5 0 01-.354.146z" /> </svg>`; }; //# sourceMappingURL=Amusementpark.js.map