adding app v2 (#943)

This commit is contained in:
Kevin Guevara
2026-04-09 11:25:19 -05:00
committed by GitHub
parent 5cefc39972
commit dc428b2042
93 changed files with 24703 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
import React from 'react';
interface CardProps extends React.HTMLAttributes<HTMLDivElement> {}
export const Card = React.forwardRef<HTMLDivElement, CardProps>(
({ className = '', children, ...props }, ref) => {
return (
<div
ref={ref}
className={`bg-surface-highest rounded-md p-6 shadow-card ${className}`}
{...props}
>
{children}
</div>
);
}
);
Card.displayName = 'Card';