fix: no need for reactnode or string type

reactnode supports strings
pull/3083/head
William Grant 10 months ago
parent 87fb386ae5
commit fb68af94f1

@ -2,7 +2,7 @@ import { ReactNode } from 'react';
import styled, { CSSProperties } from 'styled-components';
export type HeadingProps = {
children: string | ReactNode;
children: ReactNode;
color?: string;
style?: CSSProperties;
/** center | start (left) | end (right) */

@ -75,8 +75,8 @@ const StyledSettingItemClickable = styled(StyledSettingItemInline)`
`;
export const SettingsTitleAndDescription = (props: {
title?: string | ReactNode;
description?: string | ReactNode;
title?: ReactNode;
description?: ReactNode;
childrenDescription?: ReactNode;
icon?: SessionIconProps;
}) => {

Loading…
Cancel
Save