Skip to content

Commit

Permalink
feat:
Browse files Browse the repository at this point in the history
  • Loading branch information
Marwaxhello committed Jun 14, 2024
1 parent b711726 commit 4c606ce
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/components-react/src/CardGroup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ export type CardGroupProps = HTMLAttributes<HTMLDivElement>;

export const CardGroup = forwardRef(
({ children, className, ...restProps }: PropsWithChildren<CardGroupProps>, ref: ForwardedRef<HTMLDivElement>) => (
<div {...restProps} ref={ref} className={clsx('frameless-card-group', className)}>
{children}
<div className="frameless-card-group__container">
<div {...restProps} ref={ref} className={clsx('frameless-card-group', className)}>
{children}
</div>
</div>
),
);
Expand Down

0 comments on commit 4c606ce

Please sign in to comment.