File tree Expand file tree Collapse file tree 6 files changed +16
-16
lines changed
Expand file tree Collapse file tree 6 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import {
1313 Cloud16Icon ,
1414 Metrics16Icon ,
1515 Networking16Icon ,
16- Storage16Icon ,
16+ Servers16Icon ,
1717} from '@oxide/design-system/icons/react'
1818
1919import { trigger404 } from '~/components/ErrorBoundary'
@@ -109,7 +109,7 @@ export function SystemLayout() {
109109 < Metrics16Icon /> Utilization
110110 </ NavLinkItem >
111111 < NavLinkItem to = { pb . sledInventory ( ) } >
112- < Storage16Icon /> Inventory
112+ < Servers16Icon /> Inventory
113113 </ NavLinkItem >
114114 < NavLinkItem to = { pb . ipPools ( ) } >
115115 < Networking16Icon /> IP Pools
Original file line number Diff line number Diff line change 88import { createColumnHelper } from '@tanstack/react-table'
99
1010import { apiQueryClient , type PhysicalDisk } from '@oxide/api'
11- import { Racks24Icon } from '@oxide/design-system/icons/react'
11+ import { Servers24Icon } from '@oxide/design-system/icons/react'
1212
1313import { PAGE_SIZE , useQueryTable } from '~/table/QueryTable'
1414import { Badge } from '~/ui/lib/Badge'
1515import { EmptyMessage } from '~/ui/lib/EmptyMessage'
1616
1717const EmptyState = ( ) => (
1818 < EmptyMessage
19- icon = { < Racks24Icon /> }
19+ icon = { < Servers24Icon /> }
2020 title = "Something went wrong"
2121 body = "We expected some racks here, but none were found"
2222 />
Original file line number Diff line number Diff line change 66 * Copyright Oxide Computer Company
77 */
88import { apiQueryClient , usePrefetchedApiQuery } from '@oxide/api'
9- import { Racks24Icon } from '@oxide/design-system/icons/react'
9+ import { Servers24Icon } from '@oxide/design-system/icons/react'
1010
1111import { RouteTabs , Tab } from '~/components/RouteTabs'
1212import { PAGE_SIZE } from '~/table/QueryTable'
@@ -27,7 +27,7 @@ export function InventoryPage() {
2727 return (
2828 < >
2929 < PageHeader >
30- < PageTitle icon = { < Racks24Icon /> } > Inventory</ PageTitle >
30+ < PageTitle icon = { < Servers24Icon /> } > Inventory</ PageTitle >
3131 </ PageHeader >
3232
3333 < RouteTabs fullWidth >
Original file line number Diff line number Diff line change 88import { createColumnHelper } from '@tanstack/react-table'
99
1010import { apiQueryClient , type Sled } from '@oxide/api'
11- import { Racks24Icon } from '@oxide/design-system/icons/react'
11+ import { Servers24Icon } from '@oxide/design-system/icons/react'
1212
1313import { makeLinkCell } from '~/table/cells/LinkCell'
1414import { PAGE_SIZE , useQueryTable } from '~/table/QueryTable'
@@ -18,7 +18,7 @@ import { pb } from '~/util/path-builder'
1818const EmptyState = ( ) => {
1919 return (
2020 < EmptyMessage
21- icon = { < Racks24Icon /> }
21+ icon = { < Servers24Icon /> }
2222 title = "Something went wrong"
2323 body = "We expected some racks here, but none were found"
2424 />
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { filesize } from 'filesize'
99import type { LoaderFunctionArgs } from 'react-router-dom'
1010
1111import { apiQueryClient , usePrefetchedApiQuery } from '@oxide/api'
12- import { Racks24Icon } from '@oxide/design-system/icons/react'
12+ import { Servers24Icon } from '@oxide/design-system/icons/react'
1313
1414import { RouteTabs , Tab } from '~/components/RouteTabs'
1515import { requireSledParams , useSledParams } from '~/hooks'
@@ -34,7 +34,7 @@ export function SledPage() {
3434 return (
3535 < >
3636 < PageHeader >
37- < PageTitle icon = { < Racks24Icon /> } > Sled</ PageTitle >
37+ < PageTitle icon = { < Servers24Icon /> } > Sled</ PageTitle >
3838 </ PageHeader >
3939
4040 < PropertiesTable . Group className = "-mt-8 mb-16" >
You can’t perform that action at this time.
0 commit comments