svg-term
Version:
Share terminal sessions via SVG and CSS
13 lines • 403 B
TypeScript
import React from "react";
import { ColorInput } from "./color";
declare type RectProps = React.SVGProps<"rect">;
export interface CursorProps {
height: RectProps["height"];
width: RectProps["height"];
x?: RectProps["x"];
y?: RectProps["y"];
fill: ColorInput<never>;
}
export declare const Cursor: React.FunctionComponent<CursorProps>;
export {};
//# sourceMappingURL=Cursor.d.ts.map