LinkProps
import { type LinkProps} from '@/components/blocks/types.ts';
export type LinkProps = {
title: string;
url: string;
isActive?: boolean;
}
Props
The LinkProps type accepts the following props
Required Props
- title (
string) - url (
string) - isActive (
boolean)