Skip to content

Commit b5b8591

Browse files
Update icons
1 parent cf41314 commit b5b8591

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

app/layouts/ProjectLayoutBase.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import {
1919
Networking16Icon,
2020
Snapshots16Icon,
2121
Storage16Icon,
22+
Subnet16Icon,
2223
} from '@oxide/design-system/icons/react'
2324

2425
import { TopBar } from '~/components/TopBar'
@@ -113,7 +114,7 @@ export function ProjectLayoutBase({ overrideContentPane }: ProjectLayoutProps) {
113114
<Networking16Icon /> VPCs
114115
</NavLinkItem>
115116
<NavLinkItem to={pb.externalSubnets(projectSelector)}>
116-
<Networking16Icon /> External Subnets
117+
<Subnet16Icon /> External Subnets
117118
</NavLinkItem>
118119
<NavLinkItem to={pb.floatingIps(projectSelector)}>
119120
<IpGlobal16Icon /> Floating IPs

app/pages/project/external-subnets/ExternalSubnetsPage.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
type ExternalSubnet,
2121
type Instance,
2222
} from '@oxide/api'
23-
import { Networking16Icon, Networking24Icon } from '@oxide/design-system/icons/react'
23+
import { Subnet16Icon, Subnet24Icon } from '@oxide/design-system/icons/react'
2424

2525
import { DocsPopover } from '~/components/DocsPopover'
2626
import { ListboxField } from '~/components/form/fields/ListboxField'
@@ -44,7 +44,7 @@ import { pb } from '~/util/path-builder'
4444

4545
const EmptyState = () => (
4646
<EmptyMessage
47-
icon={<Networking24Icon />}
47+
icon={<Subnet24Icon />}
4848
title="No external subnets"
4949
body="Create an external subnet to see it here"
5050
buttonText="New External Subnet"
@@ -191,10 +191,10 @@ export default function ExternalSubnetsPage() {
191191
return (
192192
<>
193193
<PageHeader>
194-
<PageTitle icon={<Networking24Icon />}>External Subnets</PageTitle>
194+
<PageTitle icon={<Subnet24Icon />}>External Subnets</PageTitle>
195195
<DocsPopover
196196
heading="external subnets"
197-
icon={<Networking16Icon />}
197+
icon={<Subnet16Icon />}
198198
summary="External subnets provide a range of IP addresses from a subnet pool that can be attached to instances."
199199
links={[]}
200200
/>

0 commit comments

Comments
 (0)