UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

15 lines (14 loc) 467 B
import React from "react"; export interface TabProps { children: React.ReactNode; url?: string; selected?: boolean; inCard?: boolean; } export declare const Tab: ({ children, url, selected, inCard, }: TabProps) => React.JSX.Element; export interface TabBarProps { children: React.ReactNode; leftAlign?: boolean; underlined?: boolean; } export declare const TabBar: ({ children, leftAlign, underlined, }: TabBarProps) => React.JSX.Element;