Skip to content

Commit fe770ee

Browse files
committed
fix(emcn): ChipSelect uses the emcn flat chevron, not lucide's square one
The lucide ChevronDown is square; rendering it at the chip's 9x7 footprint stretched it. Switch to the custom emcn ChevronDown (built for that wide aspect), matching the integrations filter and ChipDropdown.
1 parent 243d2a3 commit fe770ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/sim/components/emcn/components/chip-select/chip-select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use client'
22

33
import * as React from 'react'
4-
import { ChevronDown } from 'lucide-react'
54
import { chipVariants } from '@/components/emcn/components/chip/chip'
65
import {
76
DropdownMenu,
@@ -12,6 +11,7 @@ import {
1211
DropdownMenuSearchInput,
1312
DropdownMenuTrigger,
1413
} from '@/components/emcn/components/dropdown-menu/dropdown-menu'
14+
import { ChevronDown } from '@/components/emcn/icons'
1515
import { cn } from '@/lib/core/utils/cn'
1616

1717
/** A selectable option in a {@link ChipSelect}. */

0 commit comments

Comments
 (0)