File: /var/www/igsms.viitorcloud.co/igsmsportal/node_modules/recharts/types/shape/Cross.d.ts
/**
* @fileOverview Cross
*/
import * as React from 'react';
import { SVGProps } from 'react';
interface CrossProps {
/**
* The x-coordinate of the vertical line of the cross.
*/
x?: number;
/**
* The y-coordinate of the horizontal line of the cross.
*/
y?: number;
/**
* The width of the horizontal line of the cross.
*/
width?: number;
/**
* The height of the vertical line of the cross.
*/
height?: number;
/**
* The y-coordinate of the top left point in the boundary box of the cross.
*/
top?: number;
/**
* The x-coordinate of the top left point in the boundary box of the cross.
*/
left?: number;
className?: number;
}
export type Props = SVGProps<SVGPathElement> & CrossProps;
export declare const Cross: React.FC<Props>;
export {};