@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.86 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 SelectionMoveIcon = ({ width = 24, height = 24, hidden = false, title = 'Selection Move', } = {}) => {
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-10h2v6H2zm2 22v-2H2v3.111a.889.889 0 00.889.889H6v-2zm6 0h6v2h-6zm22-22h2v6h-2zm1.111-8H30v2h2v2h2V2.889A.889.889 0 0033.111 2zM20 2h6v2h-6zM10 2h6v2h-6zM6 2H3a1 1 0 00-1 1v3h2V4h2zm28.887 22.684l-4.034-3.537A.489.489 0 0030.5 21a.5.5 0 00-.5.5V24h-4v-4h2.5a.5.5 0 00.5-.5.49.49 0 00-.148-.35l-3.536-4.033a.5.5 0 00-.633 0l-3.536 4.033a.489.489 0 00-.147.35.5.5 0 00.5.5H24v4h-4v-2.5a.5.5 0 00-.5-.5.489.489 0 00-.35.147l-4.034 3.537a.5.5 0 000 .632l4.034 3.536a.49.49 0 00.35.148.5.5 0 00.5-.5V26h4v4h-2.5a.5.5 0 00-.5.5.487.487 0 00.147.35l3.536 4.034a.5.5 0 00.633 0l3.536-4.034A.488.488 0 0029 30.5a.5.5 0 00-.5-.5H26v-4h4v2.5a.5.5 0 00.5.5.49.49 0 00.35-.148l4.034-3.536a.5.5 0 000-.632z"
/>
</svg>`;
};
//# sourceMappingURL=SelectionMove.js.map