@@ -26,12 +26,12 @@ interface TabsItem {
2626 /** Content to display when this tab is selected. */
2727 content : ReactNode ;
2828 /** Props for Tab
29- * { @link https://react-spectrum.adobe.com/react-aria/Tabs.html#tab | TabProps}
29+ * [See TabProps]( https://react-spectrum.adobe.com/react-aria/Tabs.html#tab)
3030 */
3131 tabProps ?: TabProps ;
3232 /**
3333 * Can be used to provide separate styling for a TabPanel, apart from one passed in panelClassName parent props.
34- * { @link https://react-spectrum.adobe.com/react-aria/Tabs.html#tabpanel | TabListProps}
34+ * [See TabPanelProps]( https://react-spectrum.adobe.com/react-aria/Tabs.html#tabpanel)
3535 */
3636 tabPanelProps ?: TabPanelProps ;
3737}
@@ -45,11 +45,12 @@ interface TabsProps extends Omit<AriaTabsProps, "orientation"> {
4545 panelClassName ?: string ;
4646 /**
4747 * Can be used to override default style.
48- * { @link https://react-spectrum.adobe.com/react-aria/Tabs.html#tablist | TabListProps}
48+ * [See TablistProps]( https://react-spectrum.adobe.com/react-aria/Tabs.html#tablist)
4949 */
5050 tabListProps ?: TabListProps < TabProps > ;
5151}
5252
53+ /** Tabs organize content into multiple sections and allow users to navigate between them. */
5354function Tabs ( {
5455 items,
5556 className,
@@ -104,7 +105,7 @@ function Tabs({
104105 ( Icon && (
105106 < Icon
106107 className = { cn (
107- "hover-short-transition h-4 w -4" ,
108+ "hover-short-transition size -4" ,
108109 "fill-klerosUIComponentsPrimaryText mr-4" ,
109110 id === selectedKey && "fill-klerosUIComponentsPrimaryBlue" ,
110111 disabled && "fill-klerosUIComponentsStroke" ,
0 commit comments