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

39 lines (38 loc) 2.24 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 DeselectCircularIcon = ({ width = 24, height = 24, hidden = false, title = 'Deselect Circular', } = {}) => { 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}" > <rect height="43.854" rx=".818" ry=".818" transform="rotate(-45 18 18)" width="2.455" x="16.772" y="-3.927" /> <path d="M31.569 21.45a13.9 13.9 0 01-1.661 3.895l1.448 1.448a15.884 15.884 0 002.152-4.852zM29.1 9.463c.132.17.26.345.382.521l1.642-1.143q-.211-.3-.439-.6a15.985 15.985 0 00-3.6-3.42l-1.137 1.648A14.009 14.009 0 0129.1 9.463zm2.9 8.516h2a15.927 15.927 0 00-1.018-5.6l-1.872.7a13.944 13.944 0 01.89 4.9zM10.657 6.094a13.866 13.866 0 013.811-1.646l-.5-1.935A15.875 15.875 0 009.21 4.647zm12.187-1.232l.69-1.877A16.174 16.174 0 0017.928 2l.007 2a14.166 14.166 0 014.909.862zM4.43 14.55a13.929 13.929 0 011.661-3.9L4.643 9.207a15.9 15.9 0 00-2.152 4.852zM6.9 26.537a14.79 14.79 0 01-.382-.521L4.88 27.159q.212.3.439.6a16.027 16.027 0 003.6 3.42l1.136-1.647A13.982 13.982 0 016.9 26.537zM4 18.021H2a15.927 15.927 0 001.018 5.6l1.873-.7a13.9 13.9 0 01-.891-4.9zm21.343 11.885a13.9 13.9 0 01-3.812 1.646l.5 1.935a15.875 15.875 0 004.754-2.134zm-12.188 1.231l-.69 1.878a16.174 16.174 0 005.606.985l-.007-2a14.144 14.144 0 01-4.909-.863z" /> </svg>`; }; //# sourceMappingURL=DeselectCircular.js.map