Skip to main content

Pass Additional Styles As Props

It is often required to change colours, borders and other elements in the descendant components if compared to the base version of the component used. It's a rather simple task with object spread syntax with CSSModuleClasses type:

import styles from './styles.module.css'

export interface IDialogButtonsProps {
moreStyles?: CSSModuleClasses
//...
}

export function DialogButtons({
moreStyles
//...
}: Readonly<IDialogButtonsProps>): React.JSX.Element {

const styled: CSSModuleClasses = {...styles, ...moreStyles}

return <>
<div className={styled.buttons}>
//...
</div>
</>
}

Thanks to CSS modules support