From 34fa020eca72c38ffab4d2fd5a7d5e7ef11ac33f Mon Sep 17 00:00:00 2001 From: francy51 Date: Fri, 13 Mar 2026 00:16:43 -0400 Subject: [PATCH] Add bull and bear direction arrows --- components/analysis/bull-bear-panel.tsx | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/components/analysis/bull-bear-panel.tsx b/components/analysis/bull-bear-panel.tsx index 1e56aba..17756df 100644 --- a/components/analysis/bull-bear-panel.tsx +++ b/components/analysis/bull-bear-panel.tsx @@ -1,4 +1,5 @@ import Link from 'next/link'; +import { ArrowDown, ArrowUp } from 'lucide-react'; import { Panel } from '@/components/ui/panel'; import type { CompanyBullBear } from '@/lib/types'; @@ -29,22 +30,34 @@ export function BullBearPanel(props: BullBearPanelProps) { ) : (
-

Bull case

+

+

    {props.bullBear.bull.map((item) => ( -
  • - {item} +
  • +
    +
  • ))}
-

Bear case

+

+

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