@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
33 lines (32 loc) • 2.48 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 TextLetteredUpperCaseIcon = ({ width = 24, height = 24, hidden = false, title = 'Text Lettered Upper Case', } = {}) => {
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="4" rx="1" ry="1" width="22" x="14" y="4" />
<rect height="4" rx="1" ry="1" width="22" x="14" y="16" />
<rect height="4" rx="1" ry="1" width="22" x="14" y="28" />
<path
d="M2 12.184c0-.107.015-.138.092-.153.673-.016 1.959-.031 3.26-.031C8.521 12 9.2 13.393 9.2 14.633a2.215 2.215 0 01-1.46 2.143v.031a2.361 2.361 0 011.837 2.311c0 1.9-1.638 2.878-4.424 2.878a82.978 82.978 0 01-3.046-.031.122.122 0 01-.107-.138zm2.128 3.842H5.46c1.224 0 1.607-.5 1.607-1.163 0-.827-.551-1.164-1.73-1.164-.6 0-1.071.015-1.209.031zm0 4.24c.168 0 .52.031 1.148.031 1.286 0 2.051-.337 2.051-1.286 0-.8-.49-1.255-1.852-1.255H4.128zm6.698-10.42C9.685 6.7 8.453 3.174 7.328.077A.116.116 0 007.2 0H4.724a.1.1 0 00-.108.108 2.764 2.764 0 01-.154.955c-.971 2.666-2.28 6.456-3.1 8.768-.031.107 0 .169.123.169h1.852a.167.167 0 00.185-.139L4 8h4l.545 1.892A.138.138 0 008.7 10h2.034c.107 0 .138-.046.092-.154zm-4.87-8.028h.016c.256.922 1.19 3.175 1.649 4.431l-3.065.011C5 4.921 5.761 2.7 5.956 1.818zM7.642 24a5.7 5.7 0 012.1.313c.075.045.09.075.09.18v1.582c0 .134-.075.134-.135.1a5.045 5.045 0 00-1.985-.373 2.982 2.982 0 00-3.235 3.168A2.93 2.93 0 007.7 32.1a6.061 6.061 0 002.09-.358c.075-.03.119 0 .119.09v1.537c0 .105-.015.164-.119.209A6.15 6.15 0 017.328 34C4.657 34 2.3 32.522 2.3 29.03 2.3 26.179 4.388 24 7.642 24z"
/>
</svg>`;
};
//# sourceMappingURL=TextLetteredUpperCase.js.map