{"version":3,"sources":["../src/single-column/single-column.tsx"],"sourcesContent":["import React from \"react\";\nimport { Section } from \"@react-email/section\";\n\ninterface SingleColumnProps {\n  pX?: number;\n  pY?: number;\n  children?: React.ReactNode;\n  style?: React.CSSProperties;\n}\n\nexport const SingleColumn: React.FC<SingleColumnProps> = ({\n  pX = 0,\n  pY = 0,\n  children,\n  style,\n}) => {\n  return (\n    <Section style={{ padding: `${pY}px ${pX}px`, ...style }}>\n      {children}\n    </Section>\n  );\n};\n"],"mappings":"yCAAA,OAAOA,MAAW,QAUX,IAAMC,EAA4C,CAAC,CACxD,GAAAC,EAAK,EACL,GAAAC,EAAK,EACL,SAAAC,EACA,MAAAC,CACF,IAEIC,EAAA,cAACC,EAAA,CAAQ,MAAO,CAAE,QAAS,GAAGJ,OAAQD,MAAQ,GAAGG,CAAM,GACpDD,CACH","names":["React","SingleColumn","pX","pY","children","style","React","Section"]}