Hiyve Components - v1.0.0
    Preparing search index...

    Interface RoomCardStyles

    Customizable MUI sx styles for the RoomCard component.

    const customStyles: Partial<RoomCardStyles> = {
    card: { borderRadius: 3, boxShadow: 2 },
    header: { py: 1.5 },
    actions: { justifyContent: 'flex-start' },
    };
    interface RoomCardStyles {
        actions: SxProps<Theme>;
        card: SxProps<Theme>;
        header: SxProps<Theme>;
    }
    Index

    Properties

    Properties

    actions: SxProps<Theme>

    sx props applied to the card actions area

    card: SxProps<Theme>

    sx props applied to the card root

    header: SxProps<Theme>

    sx props applied to the card header area