|
|
@ -1,6 +1,6 @@
|
|
|
|
import styled from 'styled-components';
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
|
|
|
|
import { isEmpty } from 'lodash';
|
|
|
|
import { isEmpty, pick } from 'lodash';
|
|
|
|
import { ReactNode } from 'react';
|
|
|
|
import { ReactNode } from 'react';
|
|
|
|
import { Flex } from '../basic/Flex';
|
|
|
|
import { Flex } from '../basic/Flex';
|
|
|
|
import {
|
|
|
|
import {
|
|
|
@ -93,7 +93,7 @@ export const SettingsTitleAndDescription = (props: {
|
|
|
|
{!isEmpty(icon) ? (
|
|
|
|
{!isEmpty(icon) ? (
|
|
|
|
<>
|
|
|
|
<>
|
|
|
|
<SpacerSM />
|
|
|
|
<SpacerSM />
|
|
|
|
<SessionIcon {...icon} />
|
|
|
|
<SessionIcon {...pick(icon, ['iconType', 'iconSize', 'iconColor'])} />
|
|
|
|
</>
|
|
|
|
</>
|
|
|
|
) : null}
|
|
|
|
) : null}
|
|
|
|
</Flex>
|
|
|
|
</Flex>
|
|
|
|