@blockscout/ui-toolkit
Version:
A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects
8 lines (7 loc) • 314 B
TypeScript
import { default as React } from 'react';
import { IconButtonProps } from '../../chakra/icon-button';
export interface BackToButtonProps extends IconButtonProps {
href?: string;
hint?: string;
}
export declare const BackToButton: ({ href, hint, boxSize, ...rest }: BackToButtonProps) => React.JSX.Element;