Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
@instructure
/
ui-icons
/
es
/
Filename :
IconNoteLightSolid.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 IconNoteLightSolid 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('<IconNoteLightSolid /> is deprecated. Please use <noteSolid /> instead.'); } return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, { name: "IconNoteLight", viewBox: "0 0 1920 1920", elementRef: this.handleRef }), _path || (_path = /*#__PURE__*/React.createElement("path", { d: "M1129.412 1242.353v112.941H338.824v-112.941h790.588Zm451.764-338.824v112.942H338.824V903.529h1242.352ZM621.176 0c93.403 0 169.412 76.01 169.412 169.412 0 26.09-6.437 50.484-16.94 72.62L999.98 468.255l-79.962 79.962-226.221-226.334c-22.137 10.504-46.645 16.942-72.622 16.942-93.402 0-169.411-76.01-169.411-169.412C451.765 76.009 527.775 0 621.176 0ZM344.471 225.882c25.976 128.753 140.047 225.883 276.705 225.883 13.553 0 27.106-1.13 39.53-3.389L920.47 708.141l239.435-239.435-242.824-242.824H1920v1129.412h-564.706V1920H0V225.882Zm1568.188 1242.365-444.424 444.31v-444.31h444.424Z", fillRule: "evenodd" }))); } } IconNoteLightSolid.glyphName = 'note-light'; IconNoteLightSolid.variant = 'Solid'; IconNoteLightSolid.displayName = 'IconNoteLightSolid'; IconNoteLightSolid.deprecated = true; // eslint-disable-next-line react/forbid-foreign-prop-types IconNoteLightSolid.propTypes = { ...SVGIcon.propTypes }; IconNoteLightSolid.allowedProps = [...SVGIcon.allowedProps]; export default IconNoteLightSolid; export { IconNoteLightSolid };