import Link from "./Link";
export function NP({ text }: { text: string }) {
return {text || "NP"};
}
export function Complement({ text }: { text: string }) {
return {text || "complement"};
}
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 Sandwich({ text }: { text: string}) {
return {text || "sandwich"};
}
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 BlocksIcon() {
return ;
}
export function KingIcon() {
return ;
}
export function ServantIcon() {
return ;
};
export function Servant({ text }: { text: string }) {
return {` `}{text || "servant"};
}
export function King({ text }: { text: string }) {
return {` `}{text || "king"};
}
export function Perfective({ text }: { text: string }) {
return {` `}{text || "perfective"};
}
export function Imperfective({ text }: { text: string }) {
return {` `}{text || "imperfective"}
}