Home > @asl-19/react-dom-utils > StylableFC
React FunctionComponent that takes an optional className prop.
Signature:
type StylableFC<P = {}> = FunctionComponent<P & {
className?: string;
}>;The className prop is used for styling the component instance’s top-level element (which should have className={className}) from the outside.