react-icons/ri#RiTeamFill TypeScript Examples

The following examples show how to use react-icons/ri#RiTeamFill. 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: staticData.tsx    From projectboard with MIT License 5 votes vote down vote up
newFeatures = [
    {
        id: '1',
        Icon: <CgBoard className="w-10 h-10" />,
        title: 'Boards',
        description:
            'Empower teams to self-manage as they move tasks from one stage to the other and visualize workflows in boards.'
    },
    {
        id: '2',
        Icon: <RiTeamFill className="w-10 h-10" />,
        title: 'Team Management',
        description: 'Provide access to your project or revoke them when necessary.'
    },
    {
        id: '3',
        Icon: <BiSortUp className="w-10 h-10" />,
        title: 'History',
        description: 'Track history of entire project or individual task.'
    },
    {
        id: '4',
        Icon: <MdNotificationsActive className="w-10 h-10" />,
        title: 'Get Notified Immediately',
        description: 'Get Notifications when anyone in team creates or deletes a task or update boards.'
    },
    {
        id: '5',
        Icon: <TiThMenu className="w-10 h-10" />,
        title: 'Context Menu',
        description: "Make new Tasks with interactive menu that appears on every new line when you type '/'."
    },
    {
        id: '6',
        Icon: <CgLivePhoto className="w-10 h-10" />,
        title: 'Live Markdown Editor',
        description:
            'Seamless experience as both a readder and a writer. Providing a real live preview feature to help your concentrate on the content itself.'
    }
]