/var/softaculous/sitepad/editor/site-data/plugins/pagelayer/js/react/src/components
Edit: /var/softaculous/sitepad/editor/site-data/plugins/pagelayer/js/react/src/components/spinner.js (846B)
import { useState } from '@wordpress/element';
import { LabelControl } from './label';
export const SpinnerControl = (props) =>{
const { prop, label, value, setAttributes } = props;
const { name } = prop['c'];
const { min, max, step } = prop;
const handleInputChange = (e) => {
let newValue = parseFloat(e.target.value);
if (!isNaN(max) && newValue > max) {
newValue = max;
}
setAttributes({[name]: newValue});
};
return (
);
}