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) 1.86 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 BidRuleAddIcon = ({ width = 24, height = 24, hidden = false, title = 'Bid Rule Add', } = {}) => { 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="3.155" rx=".789" ry=".789" transform="rotate(-44.995 18.023 6.023)" width="12.619" x="11.713" y="4.445" /> <path d="M27 18.1a8.9 8.9 0 108.9 8.9 8.9 8.9 0 00-8.9-8.9zm5 9.4a.5.5 0 01-.5.5H28v3.5a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5V28h-3.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H26v-3.5a.5.5 0 01.5-.5h1a.5.5 0 01.5.5V26h3.5a.5.5 0 01.5.5zm1.61-10.861l1.418-1.418a.789.789 0 000-1.116l-1.115-1.115a.789.789 0 00-1.116 0l-2.237 2.238a12.207 12.207 0 013.05 1.411zM27 14.7c.1 0 .189.012.286.014L30 12l-6-6-6 6 3.844 3.844A12.231 12.231 0 0127 14.7zm-7.062 2.238L18 15 1.939 29.818a1.5 1.5 0 000 2.122l2.122 2.12a1.5 1.5 0 002.121 0l8.761-9.5a12.305 12.305 0 014.995-7.622z" /> </svg>`; }; //# sourceMappingURL=BidRuleAdd.js.map