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) 1.97 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 BracketsIcon = ({ width = 24, height = 24, hidden = false, title = 'Brackets' } = {}) => { 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="M12.884 30.784a.726.726 0 00-.727-.727h-1.472a.7.7 0 01-.728-.667v-7.754c0-1.7-2.814-3.651-2.814-3.651s2.814-1.885 2.814-3.621v-7.8a.687.687 0 01.715-.656h1.485a.727.727 0 00.727-.728V2.727A.727.727 0 0012.157 2h-.7a5.511 5.511 0 00-5.441 5.845c.013 2.807.027 5.752.027 6.642 0 1.19-1.569 2.305-2.677 2.943a.635.635 0 00-.007 1.123c1.108.653 2.684 1.783 2.684 2.93v6.7A5.51 5.51 0 0011.486 34h.671a.727.727 0 00.727-.727zm10.227 0a.727.727 0 01.727-.727h1.472a.7.7 0 00.728-.667v-7.754c0-1.7 2.814-3.651 2.814-3.651s-2.814-1.888-2.814-3.621v-7.8a.687.687 0 00-.715-.656h-1.485a.728.728 0 01-.727-.728V2.727A.728.728 0 0123.838 2h.7a5.508 5.508 0 015.44 5.845 2258.09 2258.09 0 00-.027 6.642c0 1.19 1.569 2.305 2.676 2.943a.635.635 0 01.008 1.123c-1.108.653-2.684 1.783-2.684 2.93v6.7A5.507 5.507 0 0124.509 34h-.671a.728.728 0 01-.727-.727z" /> </svg>`; }; //# sourceMappingURL=Brackets.js.map