mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
|
|
import { Grid as MantineGrid, GridProps as MantineGridProps } from '@mantine/core';
|
||
|
|
|
||
|
|
export interface GridProps extends MantineGridProps {}
|
||
|
|
|
||
|
|
export const Grid = ({ classNames, style, ...props }: GridProps) => {
|
||
|
|
return (
|
||
|
|
<MantineGrid
|
||
|
|
classNames={{ ...classNames }}
|
||
|
|
style={{ ...style }}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
Grid.Col = MantineGrid.Col;
|