import { styled } from "@twind/react"
interface IAutoGridProps {
amount: number;
minWidth: number;
maxWidth: number;
}
const AutoGrid = styled('div', {
// New property that accepts a function which is passed all props
css: ({ amount, minWidth, maxWidth }: IAutoGridProps) => ({
gridTemplateColumns: `repeat(${amount}, minmax(${minWidth}, ${maxWidth}))`
})
})