@smitch/fluid
Version:
A Next/React ui-component libray.
15 lines (14 loc) • 382 B
TypeScript
/// <reference types="react" />
export interface TwitterEmbedProps extends React.HTMLAttributes<HTMLDivElement> {
className?: string;
style?: React.CSSProperties;
handle: string;
height?: number;
header?: boolean;
borders?: boolean;
transparent?: boolean;
scrollbars?: boolean;
theme?: 'light' | 'dark';
status?: string;
lang?: string;
}