Skip to content

Commit

Permalink
Fix icons (#40)
Browse files Browse the repository at this point in the history
initial commit
  • Loading branch information
evertonstz authored Apr 23, 2024
1 parent 4db18be commit 8bf213a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/MainContent/NoSelectedDevice.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useIsMobile } from '@/hooks';
import { Pax } from '@/pax';
import { Terminal } from 'lucide-react';
import { Barcode } from 'lucide-react';
import { useState } from 'react';

import AddDeviceFooter from '../AddDeviceFooter';
Expand All @@ -27,7 +27,7 @@ export const NoSelectedDevice = () => {
setDeviceValue={setDeviceValue}
/>
<Alert>
<Terminal className="h-4 w-4" />
<Barcode className="h-4 w-4" />
<AlertTitle>Heads up!</AlertTitle>
<AlertDescription>
Make sure to add the correct serial from the back of your device.
Expand Down
4 changes: 2 additions & 2 deletions src/components/MainContent/SelectedDevice/Connect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { PaxPairing } from '@/components/Graphics';
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
import { Button } from '@/components/ui/button';
import { useIsMobile } from '@/hooks';
import { Terminal } from 'lucide-react';
import { BluetoothIcon } from 'lucide-react';

export interface IConnectProps {
connect: () => Promise<void>;
Expand All @@ -23,7 +23,7 @@ export function Connect(props: IConnectProps) {
Connect
</Button>
<Alert>
<Terminal className="h-4 w-4" />
<BluetoothIcon className="h-4 w-4" />
<AlertTitle>Pairing mode</AlertTitle>
<AlertDescription>
Shake your device ultil you see the blue light.
Expand Down

0 comments on commit 8bf213a

Please sign in to comment.