react-icons/fi#FiCheck JavaScript Examples
The following examples show how to use
react-icons/fi#FiCheck.
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: Navbar.js From Official-Website with MIT License | 6 votes |
function Navbar(props) {
return (
<div className="navbar">
<div className="searchbar">
<IconContext.Provider value={{ color: '#252537'}}>
<IoIosSearch size={20} />
</IconContext.Provider>
<input placeholder="Search everything..."/>
</div>
<div className="profile-settings">
<FiCheck />
<FiUsers />
<FiBell />
<FiMail />
</div>
</div>
);
}
Example #2
Source File: components.js From idena-web with MIT License | 6 votes |
function ThumbnailOverlay({option, isQualified, hasIrrelevantWords}) {
return (
<Fill
bg={
// eslint-disable-next-line no-nested-ternary
isQualified
? hasIrrelevantWords
? transparentize(0.1, theme.colors.danger)
: rgba(87, 143, 255, 0.9)
: rgba(89, 89, 89, 0.95)
}
borderRadius={['16px', '12px']}
>
{option && <FiCheck size={rem(20)} color={theme.colors.white} />}
</Fill>
)
}
Example #3
Source File: orders.js From plataforma-sabia with MIT License | 5 votes |
getTechnologyDataGrid = (order, openModal, setCurrentOrder) => {
const {
id,
status,
created_at,
user,
technology: { title },
} = order;
const orderType = 'technology';
return {
id,
title,
buyer: user.full_name,
status: {
status,
content: getDealStatusText(status),
},
orderDate: dateToString(created_at),
type: 'T',
actions: [
{
variant: 'gray',
ariaLabel: 'Order details',
icon: FiEye,
onClick: () => openModal('technologyOrderDetails', { id }),
},
{
variant: 'success',
ariaLabel: 'Settle the deal',
icon: FiCheck,
onClick: () => openModal('settleDeal', { id, orderType }),
disabled:
status === dealStatusEnum.DEAL_STRUCK ||
status === dealStatusEnum.DEAL_CANCELLED,
},
{
variant: 'info',
ariaLabel: 'Send message to the buyer',
icon: FiMessageSquare,
onClick: () => setCurrentOrder(order),
},
{
variant: 'remove',
ariaLabel: 'Cancel order',
icon: FiX,
onClick: () => openModal('cancelOrder', { id, orderType }),
disabled:
status === dealStatusEnum.DEAL_CANCELLED ||
status === dealStatusEnum.DEAL_STRUCK,
},
],
};
}
Example #4
Source File: orders.js From plataforma-sabia with MIT License | 5 votes |
getServiceDataGrid = (order, openModal, setCurrentOrder) => {
const {
id,
status,
created_at,
user,
service: { name },
} = order;
const orderType = 'service';
return {
id,
title: name,
buyer: user.full_name,
status: { status, content: getDealStatusText(status) },
orderDate: dateToString(created_at),
type: 'S',
actions: [
{
variant: 'gray',
ariaLabel: 'Order details',
icon: FiEye,
onClick: () => openModal('serviceOrderDetails', { id }),
},
{
variant: 'success',
ariaLabel: 'Settle the deal',
icon: FiCheck,
onClick: () => openModal('settleDeal', { id, orderType }),
disabled:
status === dealStatusEnum.DEAL_STRUCK ||
status === dealStatusEnum.DEAL_CANCELLED,
},
{
variant: 'info',
ariaLabel: 'Send message to the buyer',
icon: FiMessageSquare,
onClick: () => setCurrentOrder(order),
},
{
variant: 'remove',
ariaLabel: 'Cancel order',
icon: FiX,
onClick: () => openModal('cancelOrder', { id, orderType }),
disabled:
status === dealStatusEnum.DEAL_CANCELLED ||
status === dealStatusEnum.DEAL_STRUCK,
},
],
};
}