@benbugraer/headline-editor
Version:
A headline editor canvas component for news websites
9 lines (8 loc) • 362 B
TypeScript
import React from "react";
import type { TextStrokeState } from "../types/effects.types";
interface TextStrokeControlProps {
stroke: TextStrokeState;
onChange: (updates: Partial<TextStrokeState>) => void;
}
export declare const TextStrokeControl: React.MemoExoticComponent<({ stroke, onChange }: TextStrokeControlProps) => React.JSX.Element>;
export {};