@useloops/design-system
Version:
The official React based Loops design system
16 lines (13 loc) • 328 B
TypeScript
import { FunctionComponent } from 'react';
interface TabProps {
active?: boolean;
animated?: boolean;
title: string;
label?: string;
stat?: number;
sentimentScore?: number;
onClick?: () => void;
}
declare const Tab: FunctionComponent<TabProps>;
export { Tab as default };
export type { TabProps };