@kayelaa/canvas API - v0.2.15
    Preparing search index...

    Type Alias FCProps

    FCProps: {
        key?: string;
        children?: KaylaElement<any>[] | KaylaElement<any>;
        ref?: KaylaRef<KaylaRectEntity>;
        exportsRef?: KaylaRef<KaylaExports<any>>;
    } & Record<string, unknown>

    Base props that every Kayla functional component can receive.

    Extend this interface when defining custom component props.

    interface PlayerProps extends FCProps {
    initialSpeed?: number;
    color: string;
    }