{"version":3,"file":"static/js/67770.63c2222d.chunk.js","mappings":"0JAYO,MAAMA,GAAUC,EAAAA,EAAAA,OACrBC,IAOsB,IAPrB,SACCC,EAAQ,UACRC,EAAY,GAAE,SACdC,EAAW,EAAC,YACZC,EAAc,SAAQ,KACtBC,EAAO,gBACJC,GACWN,EACd,MAAMO,EAAQ,CACZC,OAAiB,aAATH,EAAsB,GAAGF,QAAiB,KAAKA,OAGzD,OACEM,EAAAA,EAAAA,KAAA,OACEF,MAAOA,KACHD,EACJJ,WAAWQ,EAAAA,EAAAA,GAAG,CACZ,UACA,YAAYL,IACZ,CAAE,CAACH,GAAYA,EAAW,CAAC,YAAYE,KAAgBH,KACtDA,SAEFA,IAAYQ,EAAAA,EAAAA,KAAA,QAAMP,UAAU,gBAAeD,SAAEA,KAC1C,G","sources":["newcomponents/UI/Divider/index.tsx"],"sourcesContent":["import { memo, ReactNode } from 'react';\nimport cc from 'classcat';\nimport './index.less';\n\nexport type TDividerProps = {\n  children?: ReactNode;\n  className?: string;\n  distance?: number;\n  type?: string;\n  orientation?: string;\n};\n\nexport const Divider = memo(\n  ({\n    children,\n    className = '',\n    distance = 0,\n    orientation = 'center',\n    type = 'horizontal',\n    ...props\n  }: TDividerProps) => {\n    const style = {\n      margin: type !== 'vertical' ? `${distance}px 0` : `0 ${distance}px`\n    };\n\n    return (\n      <div\n        style={style}\n        {...props}\n        className={cc([\n          'divider',\n          `divider--${type}`,\n          { [className]: className, [`divider--${orientation}`]: children }\n        ])}\n      >\n        {children && <span className=\"divider__text\">{children}</span>}\n      </div>\n    );\n  }\n);\n"],"names":["Divider","memo","_ref","children","className","distance","orientation","type","props","style","margin","_jsx","cc"],"sourceRoot":""}