{"ast":null,"code":"import React from 'react';\nimport { Radio, Stack } from \"/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/src/index\";\nexport var Example = function Example() {\n  return React.createElement(Radio.Group, {\n    name: \"exampleGroup\",\n    defaultValue: \"1\",\n    accessibilityLabel: \"pick a size\"\n  }, React.createElement(Stack, {\n    direction: {\n      base: 'column',\n      md: 'row'\n    },\n    alignItems: {\n      base: 'flex-start',\n      md: 'center'\n    },\n    space: 4,\n    w: \"75%\",\n    maxW: \"300px\"\n  }, React.createElement(Radio, {\n    value: \"1\",\n    colorScheme: \"red\",\n    size: \"sm\",\n    my: 1\n  }, \"Small\"), React.createElement(Radio, {\n    value: \"2\",\n    colorScheme: \"green\",\n    size: \"md\",\n    my: 1\n  }, \"Medium\"), React.createElement(Radio, {\n    value: \"3\",\n    colorScheme: \"yellow\",\n    size: \"lg\",\n    my: 1\n  }, \"Large\")));\n};","map":{"version":3,"sources":["/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/example/storybook/stories/components/primitives/Radio/size.tsx"],"names":["React","Radio","Stack","Example","base","md"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,KAAT,EAAgBC,KAAhB;AAEA,OAAO,IAAMC,OAAO,GAAG,SAAVA,OAAU,GAAM;AAC3B,SACE,oBAAC,KAAD,CAAO,KAAP;AACE,IAAA,IAAI,EAAC,cADP;AAEE,IAAA,YAAY,EAAC,GAFf;AAGE,IAAA,kBAAkB,EAAC;AAHrB,KAKE,oBAAC,KAAD;AACE,IAAA,SAAS,EAAE;AAAEC,MAAAA,IAAI,EAAE,QAAR;AAAkBC,MAAAA,EAAE,EAAE;AAAtB,KADb;AAEE,IAAA,UAAU,EAAE;AAAED,MAAAA,IAAI,EAAE,YAAR;AAAsBC,MAAAA,EAAE,EAAE;AAA1B,KAFd;AAGE,IAAA,KAAK,EAAE,CAHT;AAIE,IAAA,CAAC,EAAC,KAJJ;AAKE,IAAA,IAAI,EAAC;AALP,KAOE,oBAAC,KAAD;AAAO,IAAA,KAAK,EAAC,GAAb;AAAiB,IAAA,WAAW,EAAC,KAA7B;AAAmC,IAAA,IAAI,EAAC,IAAxC;AAA6C,IAAA,EAAE,EAAE;AAAjD,aAPF,EAUE,oBAAC,KAAD;AAAO,IAAA,KAAK,EAAC,GAAb;AAAiB,IAAA,WAAW,EAAC,OAA7B;AAAqC,IAAA,IAAI,EAAC,IAA1C;AAA+C,IAAA,EAAE,EAAE;AAAnD,cAVF,EAaE,oBAAC,KAAD;AAAO,IAAA,KAAK,EAAC,GAAb;AAAiB,IAAA,WAAW,EAAC,QAA7B;AAAsC,IAAA,IAAI,EAAC,IAA3C;AAAgD,IAAA,EAAE,EAAE;AAApD,aAbF,CALF,CADF;AAyBD,CA1BM","sourcesContent":["import React from 'react';\nimport { Radio, Stack } from 'native-base';\n\nexport const Example = () => {\n  return (\n    <Radio.Group\n      name=\"exampleGroup\"\n      defaultValue=\"1\"\n      accessibilityLabel=\"pick a size\"\n    >\n      <Stack\n        direction={{ base: 'column', md: 'row' }}\n        alignItems={{ base: 'flex-start', md: 'center' }}\n        space={4}\n        w=\"75%\"\n        maxW=\"300px\"\n      >\n        <Radio value=\"1\" colorScheme=\"red\" size=\"sm\" my={1}>\n          Small\n        </Radio>\n        <Radio value=\"2\" colorScheme=\"green\" size=\"md\" my={1}>\n          Medium\n        </Radio>\n        <Radio value=\"3\" colorScheme=\"yellow\" size=\"lg\" my={1}>\n          Large\n        </Radio>\n      </Stack>\n    </Radio.Group>\n  );\n};\n"]},"metadata":{},"sourceType":"module"}