UNPKG

amis-theme-editor

Version:

amis主题编辑器

13 lines (12 loc) 329 B
/** * 主题内外边距 */ import type { FormControlProps } from 'amis-core'; import React from 'react'; interface PaddingAndMarginProps extends FormControlProps { custom: boolean; } export default class PaddingAndMarginDialogRender extends React.Component<PaddingAndMarginProps> { render(): JSX.Element; } export {};