diff --git a/src/mantine-core/src/Grid/Col/Col.tsx b/src/mantine-core/src/Grid/Col/Col.tsx index 6b9d82ada72..6825aecec03 100644 --- a/src/mantine-core/src/Grid/Col/Col.tsx +++ b/src/mantine-core/src/Grid/Col/Col.tsx @@ -60,14 +60,7 @@ export interface ColProps extends DefaultProps, React.ComponentPropsWithoutRef<' xl?: ColSpan; } -const defaultProps: Partial = { - offset: 0, - offsetXs: 0, - offsetSm: 0, - offsetMd: 0, - offsetLg: 0, - offsetXl: 0, -}; +const defaultProps: Partial = {}; function isValidSpan(span: ColSpan) { if (span === 'auto' || span === 'content') { diff --git a/src/mantine-core/src/Grid/Grid.story.tsx b/src/mantine-core/src/Grid/Grid.story.tsx index 7b7a35fd222..da83a851c63 100644 --- a/src/mantine-core/src/Grid/Grid.story.tsx +++ b/src/mantine-core/src/Grid/Grid.story.tsx @@ -19,11 +19,11 @@ export function UnexpectedRowBreak() { export function Offset0() { return ( - - Column 1 + +
Column 1
- - Column 2 + +
Column 2
);