--- import Button from "./Button.astro"; import Link from "./Link.astro"; import type {LinkType} from "../../type/type"; interface Props { BtnText: string; ClassName: string; id:string; type:'Icon' | 'Image' |'Text'; data: LinkType[]; } const { ClassName, id ,type,data ,BtnText} = Astro.props; ---