emoji-picker-react
Version:
Emoji Picker component for React Applications on the web
14 lines (13 loc) • 389 B
TypeScript
import * as React from 'react';
export declare enum FlexDirection {
ROW = "FlexRow",
COLUMN = "FlexColumn"
}
declare type Props = Readonly<{
children: React.ReactNode;
className?: string;
style?: React.CSSProperties;
direction?: FlexDirection;
}>;
export default function Flex({ children, className, style, direction }: Props): JSX.Element;
export {};