feat: structure
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import { type ComponentPropsWithoutRef } from 'react';
|
||||
import { cx } from '../utils';
|
||||
|
||||
export const Card = ({ className, ...props }: ComponentPropsWithoutRef<'div'>) => (
|
||||
<div className={cx('modern-sk-card', className)} {...props} />
|
||||
);
|
||||
Reference in New Issue
Block a user