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.56 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 AppRefreshIcon = ({ width = 24, height = 24, hidden = false, title = 'App Refresh', } = {}) => { 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="M27 33.435a6.212 6.212 0 01-4.771-2.123L24.537 29H18v6.55l2.504-2.509A8.745 8.745 0 0027 36a9.298 9.298 0 009-9h-2.28A6.889 6.889 0 0127 33.435zm6.558-12.477A9.215 9.215 0 0027 18a9.298 9.298 0 00-9 9h2.28A6.889 6.889 0 0127 20.565a6.283 6.283 0 014.871 2.117L29.601 25H36v-6.535zm-17.327-5.287c-.538 0-.75 0-1.027-.016v-3.781c.18-.017.636-.033 1.206-.033 1.5 0 2.347.7 2.347 1.89 0 1.483-1.158 1.94-2.526 1.94zm-9.264-3.88c.326 1.142 1.092 3.407 1.435 4.484H5.55c.488-1.484 1.14-3.391 1.401-4.483zm20.89 1.94a1.689 1.689 0 01-.53 1.286c-.11-.003-.216-.017-.327-.017a12.004 12.004 0 00-2.696.315v-3.441c.179-.017.635-.033 1.205-.033 1.5 0 2.347.7 2.347 1.89zM15 27a12.003 12.003 0 017.331-11.058V10.31c0-.082.033-.131.115-.131.619-.016 1.825-.048 3.015-.048 3.162 0 4.335 1.76 4.335 3.553a3.83 3.83 0 01-.319 1.576 11.882 11.882 0 012.523.843v-8.88A7.222 7.222 0 0024.778 0H7.222A7.222 7.222 0 000 7.222v17.556A7.222 7.222 0 007.222 32h8.88A11.936 11.936 0 0115 27zm-3.143-6.13H10.03a.163.163 0 01-.162-.098l-.946-2.722H5.028l-.897 2.69a.162.162 0 01-.18.13h-1.63c-.097 0-.13-.048-.113-.163l3.358-9.551a2.485 2.485 0 00.146-.88c0-.065.033-.114.098-.114h2.266c.081 0 .097.016.114.098l3.765 10.463c.016.099 0 .148-.098.148zm1.375-.114V10.31c0-.082.032-.131.114-.131.62-.016 1.826-.048 3.015-.048 3.162 0 4.335 1.76 4.335 3.553 0 2.592-2.004 3.716-4.465 3.716h-1.027v3.342c0 .08-.032.13-.13.13h-1.712c-.082 0-.13-.033-.13-.115z" /> </svg>`; }; //# sourceMappingURL=AppRefresh.js.map