2020-10-25 18:47:35 +01:00
|
|
|
import controlComponent from './ColorControl';
|
|
|
|
import previewComponent from './ColorPreview';
|
|
|
|
|
2021-02-08 20:01:21 +02:00
|
|
|
function Widget(opts = {}) {
|
|
|
|
return {
|
|
|
|
name: 'color',
|
|
|
|
controlComponent,
|
|
|
|
previewComponent,
|
|
|
|
...opts,
|
|
|
|
};
|
|
|
|
}
|
2020-10-25 18:47:35 +01:00
|
|
|
|
2020-10-25 20:16:12 +01:00
|
|
|
export const NetlifyCmsWidgetColorString = { Widget, controlComponent, previewComponent };
|
|
|
|
export default NetlifyCmsWidgetColorString;
|