ui: add style prop to CardBaseProps

Signed-off-by: MT Lewis <mtlewis@users.noreply.github.com>
This commit is contained in:
MT Lewis
2026-04-16 15:20:58 +01:00
parent a344f12bc7
commit c97b9e1f73
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -646,6 +646,7 @@ export const Card: ForwardRefExoticComponent<
export type CardBaseProps = {
children?: ReactNode;
className?: string;
style?: CSSProperties;
};
// @public
+2 -1
View File
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import type { ReactNode } from 'react';
import type { ReactNode, CSSProperties } from 'react';
import type { ButtonProps as RAButtonProps } from 'react-aria-components';
import type { FlexItemProps } from '../../types';
@@ -22,6 +22,7 @@ import type { FlexItemProps } from '../../types';
export type CardBaseProps = {
children?: ReactNode;
className?: string;
style?: CSSProperties;
};
/** @public */