Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
@instructure
/
ui-icons
/
es
/
Filename :
IconRemoveBookmarkLine.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 IconRemoveBookmarkLine 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() { return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, { name: "IconRemoveBookmark", viewBox: "0 0 1920 1920", elementRef: this.handleRef }), _path || (_path = /*#__PURE__*/React.createElement("path", { d: "M1415.377 0H505.586C411.536 0 335 76.536 335 170.586V1920l625.481-375.289L1585.963 1920V170.586C1585.963 76.536 1509.426 0 1415.377 0Zm56.862 1719.164L960.48 1412.109l-511.757 307.055V170.586c0-31.388 25.474-56.862 56.862-56.862h909.79c31.389 0 56.863 25.474 56.863 56.862v1548.578Zm-230.28-1181-80.516-80.403-200.95 201.064-201.064-201.064-80.403 80.403L880.09 739.228l-201.064 200.95 80.403 80.403 201.064-200.95 200.95 200.95 80.516-80.403-201.064-200.95 201.064-201.064Z", fillRule: "evenodd" }))); } } IconRemoveBookmarkLine.glyphName = 'remove-bookmark'; IconRemoveBookmarkLine.variant = 'Line'; IconRemoveBookmarkLine.displayName = 'IconRemoveBookmarkLine'; // eslint-disable-next-line react/forbid-foreign-prop-types IconRemoveBookmarkLine.propTypes = { ...SVGIcon.propTypes }; IconRemoveBookmarkLine.allowedProps = [...SVGIcon.allowedProps]; export default IconRemoveBookmarkLine; export { IconRemoveBookmarkLine };