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.02 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 StadiumIcon = ({ width = 24, height = 24, hidden = false, title = 'Stadium' } = {}) => { 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="M35.19 15.46c-1.733-1.48-5.911-2.653-11.19-3.17V7.25l4.752-1.782a.5.5 0 000-.936L24 2.75V2.5a.5.5 0 00-.5-.5h-1a.47.47 0 00-.238.098A.47.47 0 0022 2.5v9.64c-1.294-.083-2.62-.14-4-.14s-2.706.057-4 .14V5.25l4.752-1.782a.5.5 0 000-.936L14 .75V.5a.5.5 0 00-.5-.5h-1a.47.47 0 00-.238.098A.47.47 0 0012 .5v11.79a36.611 36.611 0 00-8 1.574V7.25l4.752-1.782a.5.5 0 000-.936L4 2.75V2.5a.5.5 0 00-.5-.5h-1a.47.47 0 00-.238.098A.47.47 0 002 2.5v12.185a6.635 6.635 0 00-1.167.755A2.468 2.468 0 000 17.344V32c0 1.818 5.463 3.35 12.937 3.836A1.002 1.002 0 0014 34.84v-3.33c0-1 .517-1.51 1.155-1.51h5.69A1.155 1.155 0 0122 31.155v3.678a1.009 1.009 0 001.07 1.003C30.54 35.349 36 33.818 36 32V17.314a2.418 2.418 0 00-.81-1.854zm-1.944 2.473c-1.89 1.22-6.977 2.931-15.246 2.931-8.263 0-13.35-1.71-15.242-2.928a.61.61 0 01.028-.993C4.338 15.975 8.737 14 18 14c9.316 0 13.681 1.972 15.22 2.942a.61.61 0 01.026.991z" /> </svg>`; }; //# sourceMappingURL=Stadium.js.map