mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-10 08:26:39 +00:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
![]() |
import styled from 'styled-components';
|
||
|
import { RightOutlined } from '@ant-design/icons';
|
||
|
import { ANTD_GRAY } from '../entity/shared/constants';
|
||
|
|
||
|
export const ContextPathSeparator = styled(RightOutlined)`
|
||
|
color: ${ANTD_GRAY[6]};
|
||
|
font-size: 10px;
|
||
|
font-weight: normal;
|
||
|
padding: 0px 4px 0px 4px;
|
||
|
`;
|