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.03 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 LooksIcon = ({ width = 24, height = 24, hidden = false, title = 'Looks' } = {}) => { 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="M27.99 13.206c0-.07.01-.137.01-.206a11 11 0 00-22 0c0 .069.009.136.01.206A10.994 10.994 0 1017 32.213a10.994 10.994 0 1010.99-19.007zM17 29.664a8.925 8.925 0 01-2.94-6.073 10.771 10.771 0 005.88 0A8.925 8.925 0 0117 29.664zM17 22a8.9 8.9 0 01-2.848-.5A8.929 8.929 0 0117 16.336a8.929 8.929 0 012.848 5.16A8.9 8.9 0 0117 22zm-4.736-1.376A8.961 8.961 0 018.152 14.5 8.9 8.9 0 0111 14a8.9 8.9 0 014.308 1.144 10.978 10.978 0 00-3.044 5.48zm6.428-5.48a8.53 8.53 0 017.156-.64 8.961 8.961 0 01-4.112 6.12 10.978 10.978 0 00-3.044-5.48zM17 4a8.973 8.973 0 018.94 8.41A10.9 10.9 0 0017 13.787a10.9 10.9 0 00-8.94-1.377A8.973 8.973 0 0117 4zm-6 28a8.981 8.981 0 01-4.736-16.624A11.011 11.011 0 0012.01 22.8c0 .069-.01.136-.01.2a10.961 10.961 0 003.308 7.856A8.894 8.894 0 0111 32zm12 0a8.894 8.894 0 01-4.308-1.144A10.961 10.961 0 0022 23c0-.069-.009-.136-.01-.2a11.011 11.011 0 005.746-7.419A8.981 8.981 0 0123 32z" /> </svg>`; }; //# sourceMappingURL=Looks.js.map