diff --git a/src/components/types/index.ts b/src/components/types/index.ts index 36f7451..7fd1181 100644 --- a/src/components/types/index.ts +++ b/src/components/types/index.ts @@ -1,6 +1,12 @@ import { CSSProperties } from 'react'; export interface BaseStyleProp { + /** + * The classes object to be merged with the base styles. + */ classes?: Partial>; + /** + * The class name to be applied to the element. + */ className?: string; }