"use client";
import type { LucideProps } from "lucide-react";
export function BorderAllIcon(props: LucideProps) {
return (
);
}
export function BorderBottomIcon(props: LucideProps) {
return (
);
}
export function BorderLeftIcon(props: LucideProps) {
return (
);
}
export function BorderNoneIcon(props: LucideProps) {
return (
);
}
export function BorderRightIcon(props: LucideProps) {
return (
);
}
export function BorderTopIcon(props: LucideProps) {
return (
);
}