smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
14 lines (13 loc) • 417 B
TypeScript
import React from "react";
import { ColorObject } from "../types";
import { SetValue$ } from "../types/color-picker";
export interface ConsoleOnRef {
setStyle: (value: string, color: ColorObject, changeType: number) => void;
}
interface Props {
initialColor: string;
setValue: SetValue$;
onRef: (e: ConsoleOnRef) => void;
}
declare const Console: React.FC<Props>;
export default Console;