{"ast":null,"code":"var _this = this,\n    _jsxFileName = \"/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/example/storybook/stories/examples/Signup.tsx\";\n\nimport * as React from 'react';\nimport { Box, Heading, VStack, FormControl, Input, Button, Center } from \"/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/src/index\";\nexport var Example = function Example() {\n  return React.createElement(Center, {\n    w: \"100%\"\n  }, React.createElement(Box, {\n    safeArea: true,\n    p: \"2\",\n    w: \"90%\",\n    maxW: \"290\",\n    py: \"8\"\n  }, React.createElement(Heading, {\n    size: \"lg\",\n    color: \"coolGray.800\",\n    _dark: {\n      color: 'warmGray.50'\n    },\n    fontWeight: \"semibold\"\n  }, \"Welcome\"), React.createElement(Heading, {\n    mt: \"1\",\n    color: \"coolGray.600\",\n    _dark: {\n      color: 'warmGray.200'\n    },\n    fontWeight: \"medium\",\n    size: \"xs\"\n  }, \"Sign up to continue!\"), React.createElement(VStack, {\n    space: 3,\n    mt: \"5\"\n  }, React.createElement(FormControl, null, React.createElement(FormControl.Label, null, \"Email\"), React.createElement(Input, null)), React.createElement(FormControl, null, React.createElement(FormControl.Label, null, \"Password\"), React.createElement(Input, {\n    type: \"password\"\n  })), React.createElement(FormControl, null, React.createElement(FormControl.Label, null, \"Confirm Password\"), React.createElement(Input, {\n    type: \"password\"\n  })), React.createElement(Button, {\n    mt: \"2\",\n    colorScheme: \"indigo\"\n  }, \"Sign up\"))));\n};","map":{"version":3,"sources":["/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/example/storybook/stories/examples/Signup.tsx"],"names":["React","Box","Heading","VStack","FormControl","Input","Button","Center","Example","color"],"mappings":";;;AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SACEC,GADF,EAEEC,OAFF,EAGEC,MAHF,EAIEC,WAJF,EAKEC,KALF,EAMEC,MANF,EAOEC,MAPF;AAUA,OAAO,IAAMC,OAAO,GAAG,SAAVA,OAAU,GAAM;AAC3B,SACE,oBAAC,MAAD;AAAQ,IAAA,CAAC,EAAC;AAAV,KACE,oBAAC,GAAD;AAAK,IAAA,QAAQ,MAAb;AAAc,IAAA,CAAC,EAAC,GAAhB;AAAoB,IAAA,CAAC,EAAC,KAAtB;AAA4B,IAAA,IAAI,EAAC,KAAjC;AAAuC,IAAA,EAAE,EAAC;AAA1C,KACE,oBAAC,OAAD;AACE,IAAA,IAAI,EAAC,IADP;AAEE,IAAA,KAAK,EAAC,cAFR;AAGE,IAAA,KAAK,EAAE;AAAEC,MAAAA,KAAK,EAAE;AAAT,KAHT;AAIE,IAAA,UAAU,EAAC;AAJb,eADF,EASE,oBAAC,OAAD;AACE,IAAA,EAAE,EAAC,GADL;AAEE,IAAA,KAAK,EAAC,cAFR;AAGE,IAAA,KAAK,EAAE;AAAEA,MAAAA,KAAK,EAAE;AAAT,KAHT;AAIE,IAAA,UAAU,EAAC,QAJb;AAKE,IAAA,IAAI,EAAC;AALP,4BATF,EAkBE,oBAAC,MAAD;AAAQ,IAAA,KAAK,EAAE,CAAf;AAAkB,IAAA,EAAE,EAAC;AAArB,KACE,oBAAC,WAAD,QACE,oBAAC,WAAD,CAAa,KAAb,gBADF,EAEE,oBAAC,KAAD,OAFF,CADF,EAKE,oBAAC,WAAD,QACE,oBAAC,WAAD,CAAa,KAAb,mBADF,EAEE,oBAAC,KAAD;AAAO,IAAA,IAAI,EAAC;AAAZ,IAFF,CALF,EASE,oBAAC,WAAD,QACE,oBAAC,WAAD,CAAa,KAAb,2BADF,EAEE,oBAAC,KAAD;AAAO,IAAA,IAAI,EAAC;AAAZ,IAFF,CATF,EAaE,oBAAC,MAAD;AAAQ,IAAA,EAAE,EAAC,GAAX;AAAe,IAAA,WAAW,EAAC;AAA3B,eAbF,CAlBF,CADF,CADF;AAwCD,CAzCM","sourcesContent":["import * as React from 'react';\nimport {\n  Box,\n  Heading,\n  VStack,\n  FormControl,\n  Input,\n  Button,\n  Center,\n} from 'native-base';\n\nexport const Example = () => {\n  return (\n    <Center w=\"100%\">\n      <Box safeArea p=\"2\" w=\"90%\" maxW=\"290\" py=\"8\">\n        <Heading\n          size=\"lg\"\n          color=\"coolGray.800\"\n          _dark={{ color: 'warmGray.50' }}\n          fontWeight=\"semibold\"\n        >\n          Welcome\n        </Heading>\n        <Heading\n          mt=\"1\"\n          color=\"coolGray.600\"\n          _dark={{ color: 'warmGray.200' }}\n          fontWeight=\"medium\"\n          size=\"xs\"\n        >\n          Sign up to continue!\n        </Heading>\n        <VStack space={3} mt=\"5\">\n          <FormControl>\n            <FormControl.Label>Email</FormControl.Label>\n            <Input />\n          </FormControl>\n          <FormControl>\n            <FormControl.Label>Password</FormControl.Label>\n            <Input type=\"password\" />\n          </FormControl>\n          <FormControl>\n            <FormControl.Label>Confirm Password</FormControl.Label>\n            <Input type=\"password\" />\n          </FormControl>\n          <Button mt=\"2\" colorScheme=\"indigo\">\n            Sign up\n          </Button>\n        </VStack>\n      </Box>\n    </Center>\n  );\n};\n"]},"metadata":{},"sourceType":"module"}