Start time grid #62

Merged
stne3960 merged 30 commits from start_time_grid into main 2026-01-16 14:17:09 +01:00
Showing only changes of commit c2c5c44fe3 - Show all commits

View File

@ -94,3 +94,19 @@ export function CheckmarkIcon({
</svg> </svg>
); );
} }
export function ChevronDownIcon({
size = "inherit",
className,
...props
}: IconProps) {
return (
<svg
className={clsx(iconSizeClasses[size], className)}
{...baseSvgProps}
{...props}
>
<path d="M6 9l6 6 6-6" />
</svg>
);
}