diff --git a/src/components/icons/IconDataUsage.tsx b/src/components/icons/IconDataUsage.tsx new file mode 100644 index 00000000..8e7f689f --- /dev/null +++ b/src/components/icons/IconDataUsage.tsx @@ -0,0 +1,32 @@ +/* + * Echoes React + * Copyright (C) 2023-2025 SonarSource Sàrl + * mailto:info AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * 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, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +import { forwardRef } from 'react'; +import { IconMaterialWrapper, IconProps } from './IconWrapper'; + +export const IconDataUsage = forwardRef((props, ref) => { + // This is Material Symbols' "data_usage" icon + return ( + +  + + ); +}); +IconDataUsage.displayName = 'IconDataUsage'; diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts index ab2550be..ded7d4de 100644 --- a/src/components/icons/index.ts +++ b/src/components/icons/index.ts @@ -56,6 +56,7 @@ export { IconDash } from './IconDash'; export { IconDashboard } from './IconDashboard'; export { IconDatabase } from './IconDatabase'; export { IconDataTable } from './IconDataTable'; +export { IconDataUsage } from './IconDataUsage'; export { IconDelete } from './IconDelete'; export { IconDependency } from './IconDependency'; export { IconDependencyRisk } from './IconDependencyRisk'; diff --git a/src/generated/material-symbols-rounded-optimized.woff2 b/src/generated/material-symbols-rounded-optimized.woff2 index ab26078d..636e74d7 100644 Binary files a/src/generated/material-symbols-rounded-optimized.woff2 and b/src/generated/material-symbols-rounded-optimized.woff2 differ