mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 09:52:34 +01:00
17 lines
No EOL
595 B
JavaScript
17 lines
No EOL
595 B
JavaScript
import React from 'react';
|
|
import {Group} from '../../wizard/components/form/Form';
|
|
import {NumberField, RadioButtonsField} from '../../wizard/components/form/Fields';
|
|
import {RadioButton} from 'ui/components/controls/RadioButtons';
|
|
import Entity from '../../wizard/components/form/Entity';
|
|
|
|
export default function RotateDatumWizard() {
|
|
return <Group>
|
|
<Entity name='datum' readOnly />
|
|
<RadioButtonsField name='axis'>
|
|
<RadioButton value='X' />
|
|
<RadioButton value='Y' />
|
|
<RadioButton value='Z' />
|
|
</RadioButtonsField>
|
|
<NumberField name='angle' />
|
|
</Group>;
|
|
} |