import { ReactNode } from 'react'; interface PillShapeProps { color: string; borderColor: string; textColor: string; selected?: boolean; isHighlighted?: boolean; children: ReactNode; className?: string; } /** * PillShape - Capsule/pill node shape * * Best for: Tags, labels, flow elements, actions * Characteristics: Fully rounded ends, compact, modern look * Handles: Positioned at cardinal points (top, right, bottom, left) of bounding box */ const PillShape = ({ color, borderColor, textColor, selected = false, isHighlighted = false, children, className = '', }: PillShapeProps) => { const shadowStyle = selected ? `0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1), 0 0 0 3px ${color}40` : isHighlighted ? `0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1), 0 0 0 3px ${color}80, 0 0 12px ${color}60` : '0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)'; return (