@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.56 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 SelectionCheckedIcon = ({ width = 24, height = 24, hidden = false, title = 'Selection Checked', } = {}) => {
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="M2 20h2v6H2zm0-10h2v6H2zm30 0h2v6h-2zM4 32v-2H2v3.111a.889.889 0 00.889.889H6v-2zM33.111 2H30v2h2v2h2V2.888A.888.888 0 0033.111 2zM20 2h6v2h-6zM10 2h6v2h-6zm0 30h6v2h-6zM6 2H3a1 1 0 00-1 1v3h2V4h2zm21 16a9 9 0 109 9 9 9 0 00-9-9zm5.957 6.26l-6.476 7.929a.5.5 0 01-.738.041l-4.759-4.667a.5.5 0 01-.008-.708l1.61-1.641a.5.5 0 01.706-.007l2.573 2.519 4.535-5.553a.5.5 0 01.7-.07l1.78 1.453a.5.5 0 01.077.704z"
/>
</svg>`;
};
//# sourceMappingURL=SelectionChecked.js.map