Files
mikayla-dobson-dev/components/Links/index.tsx

7 lines
111 B
TypeScript

export type LinkProps = {
href: string,
label: string,
logo: JSX.Element,
disabled?: boolean
}