Switch to BiomeJS (#306)

This commit is contained in:
Gregory Schier
2025-11-23 08:38:13 -08:00
committed by GitHub
parent 2bac610efe
commit ec3e2e16a9
332 changed files with 3007 additions and 4097 deletions

View File

@@ -10,9 +10,15 @@ interface Props {
color?: Color;
}
export function Separator({ color, className, dashed, orientation = 'horizontal', children }: Props) {
export function Separator({
color,
className,
dashed,
orientation = 'horizontal',
children,
}: Props) {
return (
<div role="separator" className={classNames(className, 'flex items-center w-full')}>
<div role="presentation" className={classNames(className, 'flex items-center w-full')}>
{children && (
<div className="text-sm text-text-subtlest mr-2 whitespace-nowrap">{children}</div>
)}