# ElasticGrid Props (свойства) для компонента ElasticGrid: [{"name":"minColWidth","type":{"name":"number"}},{"name":"gapX","type":{"name":"number"}},{"name":"gapY","type":{"name":"number"}}] ## Использование ```tsx import React from 'react'; import { ElasticGrid } from '@salutejs/plasma-web'; export function App() { const Item = { width: '100%', height: '100px', backgroundColor: '#999', borderRadius: '10px', } const props = { itemsNumber: 5, minColWidth: 125, gapX: 8, gapY: 8, } return (
{Array(12) .fill(0) .map((_, k) => (
))}
) } ```