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

  1. title (string)
  2. url (string)
  3. isActive (boolean)