Skip to content

[pull] main from coreui:main #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Sep 21, 2024
Prev Previous commit
Next Next commit
FIx crow not passing props
  • Loading branch information
jasperfirecai2 authored Sep 2, 2024
commit 785ecc8b6fa462abf7212cc163aabe4fa8f3bc2f
2 changes: 1 addition & 1 deletion packages/coreui-react/src/components/grid/CRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const CRow = forwardRef<HTMLDivElement, CRowProps>(
})

return (
<div className={classNames('row', repsonsiveClassNames, className)} ref={ref}>
<div {...rest} className={classNames('row', repsonsiveClassNames, className)} ref={ref}>
{children}
</div>
)
Expand Down