From 58bf80189d48b9d74dbf2ee271f12f065a29bbda Mon Sep 17 00:00:00 2001 From: francy51 Date: Fri, 13 Mar 2026 00:20:12 -0400 Subject: [PATCH] Use triangle markers for bull and bear items --- components/analysis/bull-bear-panel.tsx | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/components/analysis/bull-bear-panel.tsx b/components/analysis/bull-bear-panel.tsx index 17756df..7a3c24c 100644 --- a/components/analysis/bull-bear-panel.tsx +++ b/components/analysis/bull-bear-panel.tsx @@ -1,5 +1,4 @@ import Link from 'next/link'; -import { ArrowDown, ArrowUp } from 'lucide-react'; import { Panel } from '@/components/ui/panel'; import type { CompanyBullBear } from '@/lib/types'; @@ -30,15 +29,15 @@ export function BullBearPanel(props: BullBearPanelProps) { ) : (
-

-

+

Bull case

    {props.bullBear.bull.map((item) => (
  • -
  • @@ -47,15 +46,15 @@ export function BullBearPanel(props: BullBearPanelProps) {
-

-

+

Bear case

    {props.bullBear.bear.map((item) => (
  • -