File size: 278 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { Component } from 'react';

interface SiteLinkProps {
	href?: string;
	isButton?: boolean;
	isPrimaryButton?: boolean;
	newWindow?: boolean;
	children?: React.ReactNode;
}

declare class SiteLink extends Component< SiteLinkProps, any > {}

export default SiteLink;