Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions src/components/icons/IconComputer.tsx
Original file line number Diff line number Diff line change
@@ -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';
Comment thread
jeremy-davis-sonarsource marked this conversation as resolved.
import { IconMaterialWrapper, IconProps } from './IconWrapper';

export const IconComputer = forwardRef<HTMLSpanElement, IconProps>((props, ref) => {
// This is Material Symbols' "computer" icon
return (
<IconMaterialWrapper {...props} ref={ref}>
&#xE31E;
</IconMaterialWrapper>
);
});
IconComputer.displayName = 'IconComputer';
32 changes: 32 additions & 0 deletions src/components/icons/IconDataTable.tsx
Original file line number Diff line number Diff line change
@@ -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 IconDataTable = forwardRef<HTMLSpanElement, IconProps>((props, ref) => {
// This is Material Symbols' "data_table" icon
return (
<IconMaterialWrapper {...props} ref={ref}>
&#xE99C;
</IconMaterialWrapper>
);
});
IconDataTable.displayName = 'IconDataTable';
32 changes: 32 additions & 0 deletions src/components/icons/IconDatabase.tsx
Original file line number Diff line number Diff line change
@@ -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 IconDatabase = forwardRef<HTMLSpanElement, IconProps>((props, ref) => {
// This is Material Symbols' "database" icon
return (
<IconMaterialWrapper {...props} ref={ref}>
&#xF20E;
</IconMaterialWrapper>
);
});
IconDatabase.displayName = 'IconDatabase';
3 changes: 3 additions & 0 deletions src/components/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,15 @@ export { IconClock } from './IconClock';
export { IconCodeSmell } from './IconCodeSmell';
export { IconCollapse } from './IconCollapse';
export { IconComment } from './IconComment';
export { IconComputer } from './IconComputer';
export { IconContentCut } from './IconContentCut';
export { IconContract } from './IconContract';
export { IconCopy } from './IconCopy';
export { IconCreditCardGear } from './IconCreditCardGear';
export { IconDash } from './IconDash';
export { IconDashboard } from './IconDashboard';
export { IconDatabase } from './IconDatabase';
export { IconDataTable } from './IconDataTable';
export { IconDelete } from './IconDelete';
export { IconDependency } from './IconDependency';
export { IconDependencyRisk } from './IconDependencyRisk';
Expand Down
Binary file modified src/generated/material-symbols-rounded-optimized.woff2
Binary file not shown.
Loading