import { AlignLeft, AlignCenter, AlignRight } from "lucide-react"; import { AlignmentType } from "../types"; interface AlignmentToolsProps { alignText: (alignment: AlignmentType) => void; } export function AlignmentTools({ alignText }: AlignmentToolsProps) { return (