UNPKG

1.23 kBSource Map (JSON)View Raw
1{"version":3,"file":"PivotItem.js","sourceRoot":"../src/","sources":["components/Pivot/PivotItem.tsx"],"names":[],"mappings":";;;;AAAA,6BAA+B;AAC/B,iDAA8G;AAG9G,IAAM,cAAc,GAAG,WAAW,CAAC;AAEnC;IAA+B,qCAAoC;IACjE,mBAAY,KAAsB;QAAlC,YACE,kBAAM,KAAK,CAAC,SAMb;QAJC,kCAAsB,CAAC,KAAI,CAAC,CAAC;QAC7B,4BAAgB,CAAC,cAAc,EAAE,KAAK,EAAE;YACtC,QAAQ,EAAE,YAAY;SACvB,CAAC,CAAC;;IACL,CAAC;IAEM,0BAAM,GAAb;QACE,OAAO,gDAAS,0BAAc,CAAC,IAAI,CAAC,KAAK,EAAE,yBAAa,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAO,CAAC;IACzF,CAAC;IACH,gBAAC;AAAD,CAAC,AAbD,CAA+B,KAAK,CAAC,SAAS,GAa7C;AAbY,8BAAS","sourcesContent":["import * as React from 'react';\nimport { getNativeProps, divProperties, initializeComponentRef, warnDeprecations } from '@fluentui/utilities';\nimport type { IPivotItemProps } from './PivotItem.types';\n\nconst COMPONENT_NAME = 'PivotItem';\n\nexport class PivotItem extends React.Component<IPivotItemProps, {}> {\n constructor(props: IPivotItemProps) {\n super(props);\n\n initializeComponentRef(this);\n warnDeprecations(COMPONENT_NAME, props, {\n linkText: 'headerText',\n });\n }\n\n public render(): JSX.Element {\n return <div {...getNativeProps(this.props, divProperties)}>{this.props.children}</div>;\n }\n}\n"]}
\No newline at end of file