feat(react): initial skin scaffolding (#523)

Co-authored-by: Rahim <rahim.alwer@gmail.com>
This commit is contained in:
Sam Potts
2026-02-15 17:42:45 +11:00
committed by GitHub
co-authored by Rahim
parent b1c8022794
commit edefc2a2d6
29 changed files with 125 additions and 18 deletions
@@ -0,0 +1 @@
export * from './skin';
@@ -0,0 +1,3 @@
.media-skin {
color: var(--media-color, red);
}
@@ -0,0 +1,8 @@
import type { BaseSkinProps } from '../types';
export type BackgroundVideoSkinProps = BaseSkinProps;
export function BackgroundVideoSkin(props: BackgroundVideoSkinProps) {
const { children } = props;
return <div>{children}</div>;
}