geostyler
Version:
Framework for styling geodata
14 lines (13 loc) • 523 B
TypeScript
import { default as React } from 'react';
import { NumberExpressionInputProps } from '../../../ExpressionInput/NumberExpressionInput/NumberExpressionInput';
import { Expression } from 'geostyler-style';
type InputProps = NumberExpressionInputProps['inputProps'];
export interface WidthFieldProps extends InputProps {
value?: Expression<number> | undefined;
onChange?: (newValue: Expression<number> | undefined) => void;
}
/**
* WidthField
*/
export declare const WidthField: React.FC<WidthFieldProps>;
export {};