@craftercms/studio-ui
Version:
Services, components, models & utils to build CrafterCMS authoring extensions.
42 lines (40 loc) • 1.84 kB
JavaScript
/*
* Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import React from 'react';
import { createSvgIcon } from '@mui/material/utils';
export default createSvgIcon(
React.createElement('path', {
fillRule: 'evenodd',
clipRule: 'evenodd',
d: 'M14 2.61523H6C4.9 2.61523 4.01 3.51523 4.01 4.61523L4 20.6152C4 21.7152 4.89 22.6152 5.99 22.6152H18C19.1 22.6152 20 21.7152 20 20.6152V8.61523L14 2.61523ZM17.1759 8.62109L13.1709 4.61613V8.62109H17.1759ZM11.1709 10.6211V4.61523H6V20.6152H18V10.6211H11.1709Z'
}),
'PageIcon'
);