{"version":3,"file":"index14.mjs","sources":["../src/components/typograhpy/Heading/index.tsx"],"sourcesContent":["import React from \"react\";\nimport BaseTypography, { BaseTypographyType } from \"../base\";\n\n// Base heading type without level and size props\nexport type HeadingType = Omit<BaseTypographyType, \"type\" | \"level\" | \"size\">;\n\n// Mega heading component\nexport const Mega = (props: HeadingType) => {\n  return (\n    <BaseTypography\n      {...props}\n      type=\"heading\"\n      level=\"mega\"\n    />\n  );\n};\n\n// H1 heading component\nexport const H1 = (props: HeadingType) => {\n  return (\n    <BaseTypography\n      {...props}\n      type=\"heading\"\n      level={1}\n    />\n  );\n};\n\n// H2 heading component\nexport const H2 = (props: HeadingType) => {\n  return (\n    <BaseTypography\n      {...props}\n      type=\"heading\"\n      level={2}\n    />\n  );\n};\n\n// H3 heading component\nexport const H3 = (props: HeadingType) => {\n  return (\n    <BaseTypography\n      {...props}\n      type=\"heading\"\n      level={3}\n    />\n  );\n};\n\n// H4 heading component\nexport const H4 = (props: HeadingType) => {\n  return (\n    <BaseTypography\n      {...props}\n      type=\"heading\"\n      level={4}\n    />\n  );\n};\n\n// H5 heading component\nexport const H5 = (props: HeadingType) => {\n  return (\n    <BaseTypography\n      {...props}\n      type=\"heading\"\n      level={5}\n    />\n  );\n};\n\n// H6 heading component\nexport const H6 = (props: HeadingType) => {\n  return (\n    <BaseTypography\n      {...props}\n      type=\"heading\"\n      level={6}\n    />\n  );\n};\n\n// Export types for external use\nexport type MegaType = HeadingType;\nexport type H1Type = HeadingType;\nexport type H2Type = HeadingType;\nexport type H3Type = HeadingType;\nexport type H4Type = HeadingType;\nexport type H5Type = HeadingType;\nexport type H6Type = HeadingType; "],"names":[],"mappings":";;AAOa,MAAA,OAAO,CAAC,UAAuB;AAExC,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACE,GAAG;AAAA,MACJ,MAAK;AAAA,MACL,OAAM;AAAA,IAAA;AAAA,EACR;AAEJ;AAGa,MAAA,KAAK,CAAC,UAAuB;AAEtC,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACE,GAAG;AAAA,MACJ,MAAK;AAAA,MACL,OAAO;AAAA,IAAA;AAAA,EACT;AAEJ;AAGa,MAAA,KAAK,CAAC,UAAuB;AAEtC,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACE,GAAG;AAAA,MACJ,MAAK;AAAA,MACL,OAAO;AAAA,IAAA;AAAA,EACT;AAEJ;AAGa,MAAA,KAAK,CAAC,UAAuB;AAEtC,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACE,GAAG;AAAA,MACJ,MAAK;AAAA,MACL,OAAO;AAAA,IAAA;AAAA,EACT;AAEJ;AAGa,MAAA,KAAK,CAAC,UAAuB;AAEtC,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACE,GAAG;AAAA,MACJ,MAAK;AAAA,MACL,OAAO;AAAA,IAAA;AAAA,EACT;AAEJ;AAGa,MAAA,KAAK,CAAC,UAAuB;AAEtC,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACE,GAAG;AAAA,MACJ,MAAK;AAAA,MACL,OAAO;AAAA,IAAA;AAAA,EACT;AAEJ;AAGa,MAAA,KAAK,CAAC,UAAuB;AAEtC,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACE,GAAG;AAAA,MACJ,MAAK;AAAA,MACL,OAAO;AAAA,IAAA;AAAA,EACT;AAEJ;"}