diff --git a/components/AutoGrid.tsx b/components/AutoGrid.tsx index 975d90f..53ccb5e 100644 --- a/components/AutoGrid.tsx +++ b/components/AutoGrid.tsx @@ -3,16 +3,19 @@ import { JSX } from 'preact' type Units = 'rem' | '%' | 'px' export function AutoGrid( - { columnWidth, children }: { + { columnWidth, children, style }: { columnWidth: `${number}${Units}` children: JSX.Element | JSX.Element[] + style?: JSX.CSSProperties }, ) { return (
{children}