misc_pterodactyl-panel/resources/scripts/components/helpers.ts
2022-12-15 19:06:14 -07:00

12 lines
363 B
TypeScript

import type { StyledComponent } from 'styled-components';
export const withSubComponents = <C extends StyledComponent<any, any>, P extends Record<string, any>>(
component: C,
properties: P,
): C & P => {
Object.keys(properties).forEach((key: keyof P) => {
(component as any)[key] = properties[key];
});
return component as C & P;
};