{"ast":null,"code":"import * as React from 'react';\nimport { Box, Heading, VStack, FormControl, Input, Button } from \"/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/src/index\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { jsxs as _jsxs } from \"react/jsx-runtime\";\nexport var Example = function Example() {\n  return _jsxs(Box, {\n    safeArea: true,\n    p: \"2\",\n    w: \"90%\",\n    maxW: \"290\",\n    py: \"8\",\n    children: [_jsx(Heading, {\n      size: \"lg\",\n      color: \"coolGray.800\",\n      _dark: {\n        color: 'warmGray.50'\n      },\n      fontWeight: \"semibold\",\n      children: \"Welcome\"\n    }), _jsx(Heading, {\n      mt: \"1\",\n      color: \"coolGray.600\",\n      _dark: {\n        color: 'warmGray.200'\n      },\n      fontWeight: \"medium\",\n      size: \"xs\",\n      children: \"Sign up to continue!\"\n    }), _jsxs(VStack, {\n      space: 3,\n      mt: \"5\",\n      children: [_jsxs(FormControl, {\n        children: [_jsx(FormControl.Label, {\n          children: \"Email\"\n        }), _jsx(Input, {})]\n      }), _jsxs(FormControl, {\n        children: [_jsx(FormControl.Label, {\n          children: \"Password\"\n        }), _jsx(Input, {\n          type: \"password\"\n        })]\n      }), _jsxs(FormControl, {\n        children: [_jsx(FormControl.Label, {\n          children: \"Confirm Password\"\n        }), _jsx(Input, {\n          type: \"password\"\n        })]\n      }), _jsx(Button, {\n        mt: \"2\",\n        colorScheme: \"indigo\",\n        children: \"Sign up\"\n      })]\n    })]\n  });\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","Example","color"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SAASC,GAAT,EAAcC,OAAd,EAAuBC,MAAvB,EAA+BC,WAA/B,EAA4CC,KAA5C,EAAmDC,MAAnD;;;AAEA,OAAO,IAAMC,OAAO,GAAG,SAAVA,OAAU,GAAM;AAC3B,SACE,MAAC,GAAD;AAAK,IAAA,QAAQ,MAAb;AAAc,IAAA,CAAC,EAAC,GAAhB;AAAoB,IAAA,CAAC,EAAC,KAAtB;AAA4B,IAAA,IAAI,EAAC,KAAjC;AAAuC,IAAA,EAAE,EAAC,GAA1C;AAAA,eACE,KAAC,OAAD;AACE,MAAA,IAAI,EAAC,IADP;AAEE,MAAA,KAAK,EAAC,cAFR;AAGE,MAAA,KAAK,EAAE;AAAEC,QAAAA,KAAK,EAAE;AAAT,OAHT;AAIE,MAAA,UAAU,EAAC,UAJb;AAAA;AAAA,MADF,EASE,KAAC,OAAD;AACE,MAAA,EAAE,EAAC,GADL;AAEE,MAAA,KAAK,EAAC,cAFR;AAGE,MAAA,KAAK,EAAE;AAAEA,QAAAA,KAAK,EAAE;AAAT,OAHT;AAIE,MAAA,UAAU,EAAC,QAJb;AAKE,MAAA,IAAI,EAAC,IALP;AAAA;AAAA,MATF,EAkBE,MAAC,MAAD;AAAQ,MAAA,KAAK,EAAE,CAAf;AAAkB,MAAA,EAAE,EAAC,GAArB;AAAA,iBACE,MAAC,WAAD;AAAA,mBACE,KAAC,WAAD,CAAa,KAAb;AAAA;AAAA,UADF,EAEE,KAAC,KAAD,KAFF;AAAA,QADF,EAKE,MAAC,WAAD;AAAA,mBACE,KAAC,WAAD,CAAa,KAAb;AAAA;AAAA,UADF,EAEE,KAAC,KAAD;AAAO,UAAA,IAAI,EAAC;AAAZ,UAFF;AAAA,QALF,EASE,MAAC,WAAD;AAAA,mBACE,KAAC,WAAD,CAAa,KAAb;AAAA;AAAA,UADF,EAEE,KAAC,KAAD;AAAO,UAAA,IAAI,EAAC;AAAZ,UAFF;AAAA,QATF,EAaE,KAAC,MAAD;AAAQ,QAAA,EAAE,EAAC,GAAX;AAAe,QAAA,WAAW,EAAC,QAA3B;AAAA;AAAA,QAbF;AAAA,MAlBF;AAAA,IADF;AAsCD,CAvCM","sourcesContent":["import * as React from 'react';\nimport { Box, Heading, VStack, FormControl, Input, Button } from 'native-base';\n\nexport const Example = () => {\n  return (\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  );\n};\n"]},"metadata":{},"sourceType":"module"}