{"ast":null,"code":"var baseStyle = function baseStyle(props) {\n  var isUnderlined = props.isUnderlined;\n  return {\n    _text: {\n      textDecorationLine: isUnderlined ? 'underline' : 'none'\n    },\n    width: 'auto',\n    height: 'auto'\n  };\n};\nexport default {\n  baseStyle: baseStyle,\n  defaultProps: {\n    isUnderlined: true\n  }\n};","map":{"version":3,"sources":["link.ts"],"names":["baseStyle","props","isUnderlined","_text","textDecorationLine","width","height","defaultProps"],"mappings":"AAAA,IAAMA,SAAS,GAAIC,SAAbD,SAAS,CAAIC,KAAD,EAAgC;EAChD,IAAQC,YAAAA,GAAiBD,KAAzB,CAAQC,YAAAA;EACR,OAAO;IACLC,KAAK,EAAE;MACLC,kBAAkB,EAAEF,YAAY,GAAG,WAAH,GAAiB;IAD5C,CADF;IAILG,KAAK,EAAE,MAJF;IAKLC,MAAM,EAAE;EALH,CAAP;AAOD,CATD;AAWA,eAAe;EACbN,SADa,EACbA,SADa;EAEbO,YAAY,EAAE;IACZL,YAAY,EAAE;EADF;AAFD,CAAf","sourcesContent":["const baseStyle = (props: Record<string, any>) => {\n  const { isUnderlined } = props;\n  return {\n    _text: {\n      textDecorationLine: isUnderlined ? 'underline' : 'none',\n    },\n    width: 'auto',\n    height: 'auto',\n  };\n};\n\nexport default {\n  baseStyle,\n  defaultProps: {\n    isUnderlined: true,\n  },\n};\n"]},"metadata":{},"sourceType":"module"}