sushilideaclan01's picture
change the
c4f9173
Raw
History Blame Contribute Delete
282 Bytes
import type { ReactNode } from 'react';
type SectionCardProps = {
children: ReactNode;
className?: string;
};
export function SectionCard({ children, className = '' }: SectionCardProps) {
return <section className={`studio-card ${className}`.trim()}>{children}</section>;
}