7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
export type LinkProps = {
|
|
href: string,
|
|
label: string,
|
|
logo: JSX.Element,
|
|
disabled?: boolean
|
|
}
|