react-select-table
Version:
React table component with selectable items
17 lines (16 loc) • 330 B
TypeScript
export const angleRotation: Readonly<{
Up: 0;
Down: 180;
Right: 90;
Left: -90;
}>;
export default AngleIcon;
declare function AngleIcon({ rotation }: {
rotation: any;
}): JSX.Element;
declare namespace AngleIcon {
namespace defaultProps {
import rotation = Up;
export { rotation };
}
}