datahub/datahub-web-react/src/app/previewV2/ContextPathSeparator.tsx

12 lines
317 B
TypeScript
Raw Normal View History

2025-01-29 20:42:01 -05:00
import { RightOutlined } from '@ant-design/icons';
import styled from 'styled-components';
import { ANTD_GRAY } from '@app/entity/shared/constants';
2025-01-29 20:42:01 -05:00
export const ContextPathSeparator = styled(RightOutlined)`
color: ${ANTD_GRAY[6]};
font-size: 10px;
font-weight: normal;
padding: 0px 4px 0px 4px;
`;