mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-06 14:36:32 +00:00
12 lines
365 B
TypeScript
12 lines
365 B
TypeScript
import { RightOutlined } from '@ant-design/icons';
|
|
import styled from 'styled-components';
|
|
|
|
import { ANTD_GRAY } from '@app/entity/shared/constants';
|
|
|
|
export const ContextPathSeparator = styled(RightOutlined)<{ $color?: string }>`
|
|
color: ${(props) => props.$color ?? ANTD_GRAY[6]};
|
|
font-size: 10px;
|
|
font-weight: normal;
|
|
padding: 0px 4px 0px 4px;
|
|
`;
|