UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 420 B
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;