import { withBluefish, withBluefishFn, BBox } from '../bluefish'; export type LineProps = React.SVGProps & Partial; export const Line = withBluefishFn( ({ x1, x2, y1, y2 }) => { return () => ({ width: Math.abs(+x2! - +x1!), height: Math.abs(+y2! - +y1!) }); }, (props: LineProps) => ( ), );