7 lines
188 B
TypeScript
Raw Normal View History

2021-04-19 20:27:12 +02:00
/// <reference types="react" />
export declare const Arrow: (props: {
2021-05-01 23:38:36 +02:00
direction: "up" | "down" | "left" | "right";
2021-04-19 20:27:12 +02:00
className?: string;
onClick?: () => void;
}) => JSX.Element;