mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
19 lines
738 B
TypeScript
19 lines
738 B
TypeScript
import Icon from '@ant-design/icons';
|
|
import React from 'react';
|
|
import type { DirectionType } from 'antd/es/config-provider';
|
|
|
|
const ltrD =
|
|
'M448 64l512 0 0 128-128 0 0 768-128 0 0-768-128 0 0 768-128 0 0-448c-123.712 0-224-100.288-224-224s100.288-224 224-224zM64 448l256 224-256 224z';
|
|
const rtlD =
|
|
'M256 64l512 0 0 128-128 0 0 768-128 0 0-768-128 0 0 768-128 0 0-448c-123.712 0-224-100.288-224-224s100.288-224 224-224zM960 896l-256-224 256-224z';
|
|
|
|
const DirectionIcon: React.FC<{ direction: DirectionType; className?: string }> = (props) => (
|
|
<Icon {...props}>
|
|
<svg viewBox="0 0 1024 1024" fill="currentColor">
|
|
<path d={props.direction === 'ltr' ? ltrD : rtlD} />
|
|
</svg>
|
|
</Icon>
|
|
);
|
|
|
|
export default DirectionIcon;
|