@hyperlane-xyz/widgets
Version:
Common react components for Hyperlane projects
8 lines • 352 B
TypeScript
import React, { SVGProps } from 'react';
type Props = SVGProps<SVGSVGElement> & {
direction: 'n' | 'e' | 's' | 'w';
};
declare function _ChevronIcon({ color, className, direction, ...rest }: Props): React.JSX.Element;
export declare const ChevronIcon: React.MemoExoticComponent<typeof _ChevronIcon>;
export {};
//# sourceMappingURL=Chevron.d.ts.map