{"ast":null,"code":"import React from 'react';\nimport { Center, Row } from \"/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/src/index\";\nexport var Example = function Example() {\n  return React.createElement(Row, {\n    space: 2\n  }, React.createElement(Center, {\n    size: 16,\n    bg: \"primary.400\",\n    rounded: \"md\",\n    _text: {\n      color: 'white'\n    },\n    shadow: 3\n  }, \"Box 1\"), React.createElement(Center, {\n    bg: \"secondary.400\",\n    size: 16,\n    rounded: \"md\",\n    _text: {\n      color: 'white'\n    },\n    shadow: 3\n  }, \"Box 2\"), React.createElement(Center, {\n    size: 16,\n    bg: \"emerald.400\",\n    rounded: \"md\",\n    _text: {\n      color: 'white'\n    },\n    shadow: 3\n  }, \"Box 3\"));\n};","map":{"version":3,"sources":["/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/example/storybook/stories/components/primitives/Row/Basic.tsx"],"names":["React","Center","Row","Example","color"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,MAAT,EAAiBC,GAAjB;AAEA,OAAO,IAAMC,OAAO,GAAG,SAAVA,OAAU,GAAM;AAC3B,SACE,oBAAC,GAAD;AAAK,IAAA,KAAK,EAAE;AAAZ,KACE,oBAAC,MAAD;AACE,IAAA,IAAI,EAAE,EADR;AAEE,IAAA,EAAE,EAAC,aAFL;AAGE,IAAA,OAAO,EAAC,IAHV;AAIE,IAAA,KAAK,EAAE;AAAEC,MAAAA,KAAK,EAAE;AAAT,KAJT;AAKE,IAAA,MAAM,EAAE;AALV,aADF,EAUE,oBAAC,MAAD;AACE,IAAA,EAAE,EAAC,eADL;AAEE,IAAA,IAAI,EAAE,EAFR;AAGE,IAAA,OAAO,EAAC,IAHV;AAIE,IAAA,KAAK,EAAE;AAAEA,MAAAA,KAAK,EAAE;AAAT,KAJT;AAKE,IAAA,MAAM,EAAE;AALV,aAVF,EAmBE,oBAAC,MAAD;AACE,IAAA,IAAI,EAAE,EADR;AAEE,IAAA,EAAE,EAAC,aAFL;AAGE,IAAA,OAAO,EAAC,IAHV;AAIE,IAAA,KAAK,EAAE;AAAEA,MAAAA,KAAK,EAAE;AAAT,KAJT;AAKE,IAAA,MAAM,EAAE;AALV,aAnBF,CADF;AA+BD,CAhCM","sourcesContent":["import React from 'react';\nimport { Center, Row } from 'native-base';\n\nexport const Example = () => {\n  return (\n    <Row space={2}>\n      <Center\n        size={16}\n        bg=\"primary.400\"\n        rounded=\"md\"\n        _text={{ color: 'white' }}\n        shadow={3}\n      >\n        Box 1\n      </Center>\n      <Center\n        bg=\"secondary.400\"\n        size={16}\n        rounded=\"md\"\n        _text={{ color: 'white' }}\n        shadow={3}\n      >\n        Box 2\n      </Center>\n      <Center\n        size={16}\n        bg=\"emerald.400\"\n        rounded=\"md\"\n        _text={{ color: 'white' }}\n        shadow={3}\n      >\n        Box 3\n      </Center>\n    </Row>\n  );\n};\n"]},"metadata":{},"sourceType":"module"}