fenextjs-component
Version:
8 lines (7 loc) • 363 B
TypeScript
import React from "react";
import { DesignBoxUseDataProps } from "../boxUnit";
export interface DesignBoxAlignProps extends DesignBoxUseDataProps {
textAlignItems?: string;
textJustifyContent?: string;
}
export declare const DesignBoxAlign: ({ textAlignItems, textJustifyContent, data, onChangeData, ...props }: DesignBoxAlignProps) => React.JSX.Element;