UNPKG

react-img-editor-en

Version:
8 lines (7 loc) 234 B
import React from 'react'; interface LineTypeSettingProps { value?: string; onChange: (lineType: 'solid' | 'dash') => void; } export default function LineTypeSetting(props: LineTypeSettingProps): React.JSX.Element; export {};