Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
@instructure
/
ui-icons
/
es
/
Filename :
IconToggleLeftLine.js
back
Copy
var _path; /* * The MIT License (MIT) * * Copyright (c) 2015 - present Instructure, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ import React, { Component } from 'react'; import { SVGIcon } from '@instructure/ui-svg-images'; class IconToggleLeftLine extends Component { constructor(...args) { super(...args); this.ref = null; this.handleRef = el => { const elementRef = this.props.elementRef; this.ref = el; if (typeof elementRef === 'function') { elementRef(el); } }; } render() { if (process.env.NODE_ENV !== 'production') { console.warn('<IconToggleLeftLine /> is deprecated. Please use <toggle-startLine /> instead.'); } return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, { name: "IconToggleLeft", viewBox: "0 0 1920 1920", elementRef: this.handleRef, bidirectional: true }), _path || (_path = /*#__PURE__*/React.createElement("path", { d: "M847.059 113c256.15 0 495.247 113.845 656.075 312.282l-87.868 71.153c-139.257-171.896-346.278-270.494-568.207-270.494-404.781 0-734.118 329.337-734.118 734.118 0 404.781 329.337 734.117 734.118 734.117 221.93 0 428.95-98.597 568.207-270.494l87.868 71.153c-160.828 198.438-399.925 312.283-656.075 312.283C379.934 1807.118 0 1427.184 0 960.058 0 492.935 379.934 113 847.059 113Zm129.476 411.817 79.849 79.963-298.955 298.842h1162.616v112.828H757.43l298.955 298.956-79.85 79.85-435.162-435.163 435.163-435.276Z", fillRule: "evenodd" }))); } } IconToggleLeftLine.glyphName = 'toggle-left'; IconToggleLeftLine.variant = 'Line'; IconToggleLeftLine.displayName = 'IconToggleLeftLine'; IconToggleLeftLine.deprecated = true; // eslint-disable-next-line react/forbid-foreign-prop-types IconToggleLeftLine.propTypes = { ...SVGIcon.propTypes }; IconToggleLeftLine.allowedProps = [...SVGIcon.allowedProps]; export default IconToggleLeftLine; export { IconToggleLeftLine };