7 lines
239 B
TypeScript
7 lines
239 B
TypeScript
import { type ComponentPropsWithoutRef } from 'react';
|
|
import { cx } from '../utils';
|
|
|
|
export const Card = ({ className, ...props }: ComponentPropsWithoutRef<'div'>) => (
|
|
<div className={cx('modern-sk-card', className)} {...props} />
|
|
);
|