index.js 515 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
import React from 'react';
import { Icon } from 'antd';

const IconUp = ({ color }) => (
  <Icon
    style={{
      color: (color === false) ? 'rgba(0,0,0,0.43)' : '#00a854',
      fontSize: 12,
      transform: 'scale(0.83)',
    }}
    type="caret-up"
  />
);

const IconDown = ({ color }) => (
  <Icon
    style={{
      color: (color === false) ? 'rgba(0,0,0,0.43)' : '#f04134',
      fontSize: 12,
      transform: 'scale(0.83)',
    }}
    type="caret-down"
  />
);

export default {
  IconUp,
  IconDown,
};