UNPKG

@welcome-ui/emoji-picker

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

9 lines (8 loc) 338 B
import React from 'react'; import { Tab, TabProps } from '@welcome-ui/tabs'; import { CreateWuiProps } from '@welcome-ui/system'; export interface EmojiTabOptions { name: string; } export type EmojiTabProps = CreateWuiProps<typeof Tab, EmojiTabOptions & Omit<TabProps, 'ref'>>; export declare const EmojiTab: React.FC<EmojiTabProps>;