@ant-design/icons#MehOutlined JavaScript Examples

The following examples show how to use @ant-design/icons#MehOutlined. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: customized-icon.jsx    From virtuoso-design-system with MIT License 6 votes vote down vote up
treeData = [
  {
    title: 'parent 1',
    key: '0-0',
    icon: <SmileOutlined />,
    children: [
      {
        title: 'leaf',
        key: '0-0-0',
        icon: <MehOutlined />,
      },
      {
        title: 'leaf',
        key: '0-0-1',
        icon: ({ selected }) => (selected ? <FrownFilled /> : <FrownOutlined />),
      },
    ],
  },
]
Example #2
Source File: character-function.jsx    From virtuoso-design-system with MIT License 5 votes vote down vote up
customIcons = {
  1: <FrownOutlined />,
  2: <FrownOutlined />,
  3: <MehOutlined />,
  4: <SmileOutlined />,
  5: <SmileOutlined />,
}
Example #3
Source File: suffix.jsx    From virtuoso-design-system with MIT License 5 votes vote down vote up
mehIcon = <MehOutlined />