@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 336 B
TypeScript
import React, { CSSProperties } from 'react';
export type Props = {
className?: string;
style?: CSSProperties;
bannedWords?: string[];
value?: string;
onChange?: (v: string) => void;
};
export declare const CreatePostTitle: ({ className, style, bannedWords, value, onChange, }: Props) => React.JSX.Element;