2025-03-25 22:06:48 +01:00

8 lines
241 B
JavaScript

import button from './object.js';
import { addPrefix } from '../../functions/addPrefix.js';
export default ({ addComponents, prefix = '' }) => {
const prefixedbutton = addPrefix(button, prefix);
addComponents({ ...prefixedbutton });
};