20 lines
630 B
TypeScript
20 lines
630 B
TypeScript
|
|
import React from "react";
|
||
|
|
import type { ControlProps } from "./BaseControl";
|
||
|
|
import BaseControl from "./BaseControl";
|
||
|
|
import { PropertyPaneSectionSpaceDistributor } from "layoutSystems/anvil/sectionSpaceDistributor/propertyPane/PropertyPaneSectionSpaceDistributor";
|
||
|
|
|
||
|
|
export interface SectionSplitterControlProps extends ControlProps {}
|
||
|
|
|
||
|
|
export class SectionSplitterControl extends BaseControl<SectionSplitterControlProps> {
|
||
|
|
static getControlType() {
|
||
|
|
return "SECTION_SPLITTER";
|
||
|
|
}
|
||
|
|
render() {
|
||
|
|
return (
|
||
|
|
<PropertyPaneSectionSpaceDistributor
|
||
|
|
sectionWidgetId={this.props.propertyValue}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|