@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.64 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 AEMScreensIcon = ({ width = 24, height = 24, hidden = false, title = 'AEMScreens', } = {}) => {
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="M12 2H2a2 2 0 00-2 2v18a2 2 0 002 2h10a2 2 0 002-2V4a2 2 0 00-2-2zm0 20H2V4h10zM23.798 9.34a3.34 3.34 0 113.34 3.34 3.34 3.34 0 01-3.34-3.34zM32 18.702v6.088a.922.922 0 01-.91.934h-.908l-.91 9.342a.922.922 0 01-.908.934h-2.728a.922.922 0 01-.909-.934l-.909-9.342h-.909A.922.922 0 0122 24.79v-6.088a4.901 4.901 0 014.833-4.967h.334A4.901 4.901 0 0132 18.702zM36 3v12a1 1 0 01-1 1h-1.239a7.488 7.488 0 00-1.44-2H34V4H18v10h3.66a7.455 7.455 0 00-1.415 2H17a1 1 0 01-1-1V3a1 1 0 011-1h18a1 1 0 011 1z"
/>
</svg>`;
};
//# sourceMappingURL=AEMScreens.js.map