UNPKG

@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) 1.81 kB
/* 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 CameraRefreshIcon = ({ width = 24, height = 24, hidden = false, title = 'Camera Refresh', } = {}) => { 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="M15.8 26.862a12.346 12.346 0 01.525-2.835 8.2 8.2 0 119.854-8.186c.271-.021.541-.042.816-.042a11.213 11.213 0 016.435 2.14l.57-.576V7a1 1 0 00-1-1h-6.05L23.6 2.326A1 1 0 0022.859 2h-9.718a1 1 0 00-.739.326L9.05 6H3a1 1 0 00-1 1v20a1 1 0 001 1h12.733z" /> <path d="M23.975 16.247c0-.084.025-.163.025-.247a6 6 0 10-6.8 5.919 11.413 11.413 0 016.775-5.672zM27 33.363a6.143 6.143 0 01-4.718-2.1l2.282-2.287H18.1v6.477l2.476-2.481A8.648 8.648 0 0027 35.9a9.2 9.2 0 008.9-8.9h-2.255A6.812 6.812 0 0127 33.363zm6.485-12.337A9.112 9.112 0 0027 18.1a9.2 9.2 0 00-8.9 8.9h2.255A6.812 6.812 0 0127 20.636a6.214 6.214 0 014.817 2.093l-2.245 2.293H35.9V18.56z" /> </svg>`; }; //# sourceMappingURL=CameraRefresh.js.map