wass-rct-ui
Version:
A lightweight and customizable WASS Rct UI component library for modern web applications.
30 lines (29 loc) • 824 B
TypeScript
/**
* @file wass-rct-ui
* @description A reusable Title component that supports dynamic heading levels.
* @author Web Apps Software Solutions
* @copyright © 2024 Web Apps Software Solutions. All rights reserved.
* @license MIT
* @repository https://github.com/WebAppSoftNK/wass-rct-ui
*/
import * as React from "react";
import { FC } from "react";
import { AlignmentType, BoxType, SizeType } from "../types";
export interface TabProps {
label: string;
iconName?: string;
iconSize?: number;
iconColor?: string;
content: React.ReactNode;
}
export interface TabsProps {
tabs: TabProps[];
alignment?: AlignmentType;
size?: SizeType;
variant?: BoxType;
isRounded?: boolean;
fullWidth?: boolean;
className?: string;
}
declare const Tabs: FC<TabsProps>;
export default Tabs;