You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{styled}from"@twind/react"interfaceIAutoGridProps{amount: number;minWidth: number;maxWidth: number;}constAutoGrid=styled('div',{// New property that accepts a function which is passed all propscss: ({ amount, minWidth, maxWidth }: IAutoGridProps)=>({gridTemplateColumns: `repeat(${amount}, minmax(${minWidth}, ${maxWidth}))`})})