import Link from "./Link";
export function NP({ text }: { text: string }) {
return {text || "NP"};
}
export function AP({ text }: { text: string }) {
return {text || "AP"};
}
export function VP({ text }: { text: string }) {
return {text || "VP"};
}
export function EP({ text }: { text: string }) {
return {text || "EP"};
}
export function KidsSection({ text }: { text: string }) {
return {text || "kids' section"};
}
export function MiniPronoun({ text }: { text: string }) {
return {text || "mini-pronoun"};
}
export function BlockTerm({ text }: { text: string }) {
return { text || "block"};
}
export function PerfectiveHead({ text }: { text: string }) {
return { text || "perfective head"};
}
export function Camera() {
return ;
}
export function Video() {
return ;
}
export function KingIcon() {
return ;
}
export function ServantIcon() {
return ;
};