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