/** * CommonSettingsSectionCompact * * Compact version of common settings fields for constructor sidebar. * Label and appear timing in a space-efficient layout. */ import React from 'react'; import type { CommonSettingsSectionProps } from './types'; const CommonSettingsSectionCompact: React.FC = ({ label, appearDelaySec, appearDurationSec, onChange, showLabel = true, }) => { return (
{showLabel && (
onChange('label', event.target.value)} />
)}
onChange('appearDelaySec', event.target.value)} />
onChange('appearDurationSec', event.target.value) } />

Leave empty for unlimited.

); }; export default CommonSettingsSectionCompact;