@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
34 lines (33 loc) • 1.71 kB
JavaScript
/*
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 FileCampaignIcon = ({ width = 24, height = 24, hidden = false, title = 'File Campaign', } = {}) => {
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="M20 2v10h10L20 2z" />
<path
d="M16.5 27A10.5 10.5 0 0127 16.5a10.4 10.4 0 013 .488V14H19a1 1 0 01-1-1V2H7a1 1 0 00-1 1v30a1 1 0 001 1h12.225a10.424 10.424 0 01-2.725-7z"
/>
<path
d="M19.022 26h2.762A5.307 5.307 0 0126 21.784v-2.762A8.119 8.119 0 0019.022 26zm13.193 0h2.762A8.119 8.119 0 0028 19.022v2.761A5.307 5.307 0 0132.216 26zm-10.431 2h-2.762A8.119 8.119 0 0026 34.978v-2.762A5.307 5.307 0 0121.784 28zM28 32.216v2.761A8.119 8.119 0 0034.978 28h-2.762A5.307 5.307 0 0128 32.216zM24.778 27A2.222 2.222 0 1127 29.222 2.222 2.222 0 0124.778 27z"
/>
</svg>`;
};
//# sourceMappingURL=FileCampaign.js.map