Skip to content

Commit c43bd9e

Browse files
authored
add ArrowsOutputIcon (#816)
Signed-off-by: SOUISSI Maissa (Externe) <[email protected]>
1 parent 17b2940 commit c43bd9e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Copyright (c) 2025, RTE (http://www.rte-france.com)
3+
* This Source Code Form is subject to the terms of the Mozilla Public
4+
* License, v. 2.0. If a copy of the MPL was not distributed with this
5+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
6+
*/
7+
8+
import { SvgIcon, SvgIconProps } from '@mui/material';
9+
import ArrowsOutput from '@material-symbols/svg-400/outlined/arrows_output.svg?react';
10+
11+
export function ArrowsOutputIcon(props: SvgIconProps) {
12+
return <SvgIcon component={ArrowsOutput} inheritViewBox {...props} />;
13+
}

src/components/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
*/
77
export { LeftPanelOpenIcon } from './LeftPanelOpenIcon';
8+
export { ArrowsOutputIcon } from './ArrowsOutputIcon';
89
export { LeftPanelCloseIcon } from './LeftPanelCloseIcon';
910
export { DeviceHubIcon } from './DeviceHubIcon';

0 commit comments

Comments
 (0)