react-icons/ai#AiOutlineSend JavaScript Examples
The following examples show how to use
react-icons/ai#AiOutlineSend.
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: list.js From rahat-vendor with GNU Affero General Public License v3.0 | 4 votes |
TxList = ({ limit, transactions = [] }) => {
const [tx, setTx] = useState([]);
useEffect(() => {
(async () => {
let txs = transactions.length ? transactions : await DataService.listTx();
if (limit) txs = txs.slice(0, limit);
for (let t of txs) {
if (t.type === 'issued') {
t.name = `Token sent to:`;
t.phone = `${t.to}`;
t.icon = (
<div className="icon-box bg-success">
<GiTwoCoins className="ion-icon" />
</div>
);
}
// if (t.type === 'charge') {
// t.name = `Charge to ${t.from}`;
// t.icon = (
// <div className="icon-box bg-success">
// <GiReceiveMoney className="ion-icon" />
// </div>
// );
// }
if (t.type === 'send') {
t.name = 'Send Tokens';
t.icon = (
<div className="icon-box bg-warning">
<IoArrowForwardOutline className="ion-icon" />
</div>
);
}
if (t.type === 'receive') {
t.name = 'Received Tokens';
t.icon = (
<div className="icon-box bg-primary">
<IoArrowDownOutline className="ion-icon" />
</div>
);
}
if (t.type === CHARGE_TYPES.TOKEN_RECIEVED) {
t.name = 'Token Recieved';
t.icon = (
<div className="icon-box bg-primary">
<IoArrowDownOutline className="ion-icon" />
</div>
);
}
if (t.type === CHARGE_TYPES.TOKEN_TRANSFER) {
t.name = 'Token Transferred';
t.icon = (
<div className="icon-box bg-primary">
<AiOutlineSend className="ion-icon" />
</div>
);
}
if (t.type === CHARGE_TYPES.PAKCAGE_TRANSFER) {
t.name = 'Package Transferred';
t.icon = (
<div className="icon-box bg-primary">
<AiOutlineSend className="ion-icon" />
</div>
);
}
if (t.type === CHARGE_TYPES.TOKEN_SENT) {
t.name = 'Token Sent';
t.icon = (
<div className="icon-box bg-primary">
<IoArrowForwardOutline className="ion-icon" />
</div>
);
}
if (t.type === CHARGE_TYPES.NFT_RECIEVED) {
t.name = 'NFT Recieved';
t.icon = (
<div className="icon-box bg-primary">
<IoArrowDownOutline className="ion-icon" />
</div>
);
}
if (t.type === CHARGE_TYPES.REDEEMED_PACKAGE) {
t.name = 'NFT Redeemed';
t.icon = (
<div className="icon-box bg-primary">
<IoArrowDownOutline className="ion-icon" />
</div>
);
}
if (t.type === CHARGE_TYPES.REDEEMED_TOKEN) {
t.name = 'Token Redeemed';
t.icon = (
<div className="icon-box bg-primary">
<IoArrowDownOutline className="ion-icon" />
</div>
);
}
if (t.type === CHARGE_TYPES.NFT_SENT) {
t.name = 'NFT Sent';
t.icon = (
<div className="icon-box bg-primary">
<IoArrowForwardOutline className="ion-icon" />
</div>
);
}
// if (t.type === 'redeem') {
// t.name = 'Redeem Tokens';
// t.icon = (
// <div className="icon-box bg-primary">
// <GiMoneyStack className="ion-icon" />
// </div>
// );
// }
if (t.status === 'error' || t.status === 'fail') {
t.icon = (
<div className="icon-box bg-danger">
<BiError className="ion-icon" />
</div>
);
}
}
setTx(txs);
})();
}, [transactions, limit]);
return (
<>
<ul className="listview image-listview flush">
{tx.length > 0 &&
tx.map(tx => {
return (
<li key={tx.hash}>
<Link to={`/tx/${tx.hash}`} className="item">
{tx.icon}
<div className="in">
<div>
<div className="mb-05">
<strong>{tx.name}</strong>
</div>
<div className="text-xsmall">
<Moment date={tx.timestamp} format="YYYY/MM/DD hh:mm a" />
</div>
</div>
{tx.type === 'send' ? (
<span className="text-danger">{tx.amount}</span>
) : (
<span className="text-success">{tx.amount}</span>
)}
</div>
</Link>
</li>
);
})}
</ul>
</>
);
}
Example #2
Source File: Contacts.js From developer-portfolio with Apache License 2.0 | 4 votes |
function Contacts() {
const [open, setOpen] = useState(false);
const [name, setName] = useState('');
const [email, setEmail] = useState('');
const [message, setMessage] = useState('');
const [success, setSuccess] = useState(false);
const [errMsg, setErrMsg] = useState('');
const { theme } = useContext(ThemeContext);
const handleClose = (event, reason) => {
if (reason === 'clickaway') {
return;
}
setOpen(false);
};
const useStyles = makeStyles((t) => ({
input: {
border: `4px solid ${theme.primary80}`,
backgroundColor: `${theme.secondary}`,
color: `${theme.tertiary}`,
fontFamily: 'var(--primaryFont)',
fontWeight: 500,
transition: 'border 0.2s ease-in-out',
'&:focus': {
border: `4px solid ${theme.primary600}`,
},
},
message: {
border: `4px solid ${theme.primary80}`,
backgroundColor: `${theme.secondary}`,
color: `${theme.tertiary}`,
fontFamily: 'var(--primaryFont)',
fontWeight: 500,
transition: 'border 0.2s ease-in-out',
'&:focus': {
border: `4px solid ${theme.primary600}`,
},
},
label: {
backgroundColor: `${theme.secondary}`,
color: `${theme.primary}`,
fontFamily: 'var(--primaryFont)',
fontWeight: 600,
fontSize: '0.9rem',
padding: '0 5px',
transform: 'translate(25px,50%)',
display: 'inline-flex',
},
socialIcon: {
width: '45px',
height: '45px',
borderRadius: '50%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
fontSize: '21px',
backgroundColor: theme.primary,
color: theme.secondary,
transition: '250ms ease-in-out',
'&:hover': {
transform: 'scale(1.1)',
color: theme.secondary,
backgroundColor: theme.tertiary,
},
},
detailsIcon: {
backgroundColor: theme.primary,
color: theme.secondary,
borderRadius: '50%',
width: '45px',
height: '45px',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
fontSize: '23px',
transition: '250ms ease-in-out',
flexShrink: 0,
'&:hover': {
transform: 'scale(1.1)',
color: theme.secondary,
backgroundColor: theme.tertiary,
},
},
submitBtn: {
backgroundColor: theme.primary,
color: theme.secondary,
transition: '250ms ease-in-out',
'&:hover': {
transform: 'scale(1.08)',
color: theme.secondary,
backgroundColor: theme.tertiary,
},
},
}));
const classes = useStyles();
const handleContactForm = (e) => {
e.preventDefault();
if (name && email && message) {
if (isEmail(email)) {
const responseData = {
name: name,
email: email,
message: message,
};
axios.post(contactsData.sheetAPI, responseData).then((res) => {
console.log('success');
setSuccess(true);
setErrMsg('');
setName('');
setEmail('');
setMessage('');
setOpen(false);
});
} else {
setErrMsg('Invalid email');
setOpen(true);
}
} else {
setErrMsg('Enter all the fields');
setOpen(true);
}
};
return (
<div
className='contacts'
id='contacts'
style={{ backgroundColor: theme.secondary }}
>
<div className='contacts--container'>
<h1 style={{ color: theme.primary }}>Contacts</h1>
<div className='contacts-body'>
<div className='contacts-form'>
<form onSubmit={handleContactForm}>
<div className='input-container'>
<label htmlFor='Name' className={classes.label}>
Name
</label>
<input
placeholder='John Doe'
value={name}
onChange={(e) => setName(e.target.value)}
type='text'
name='Name'
className={`form-input ${classes.input}`}
/>
</div>
<div className='input-container'>
<label
htmlFor='Email'
className={classes.label}
>
Email
</label>
<input
placeholder='[email protected]'
value={email}
onChange={(e) => setEmail(e.target.value)}
type='email'
name='Email'
className={`form-input ${classes.input}`}
/>
</div>
<div className='input-container'>
<label
htmlFor='Message'
className={classes.label}
>
Message
</label>
<textarea
placeholder='Type your message....'
value={message}
onChange={(e) => setMessage(e.target.value)}
type='text'
name='Message'
className={`form-message ${classes.message}`}
/>
</div>
<div className='submit-btn'>
<button
type='submit'
className={classes.submitBtn}
>
<p>{!success ? 'Send' : 'Sent'}</p>
<div className='submit-icon'>
<AiOutlineSend
className='send-icon'
style={{
animation: !success
? 'initial'
: 'fly 0.8s linear both',
position: success
? 'absolute'
: 'initial',
}}
/>
<AiOutlineCheckCircle
className='success-icon'
style={{
display: !success
? 'none'
: 'inline-flex',
opacity: !success ? '0' : '1',
}}
/>
</div>
</button>
</div>
</form>
<Snackbar
anchorOrigin={{
vertical: 'top',
horizontal: 'center',
}}
open={open}
autoHideDuration={4000}
onClose={handleClose}
>
<SnackbarContent
action={
<React.Fragment>
<IconButton
size='small'
aria-label='close'
color='inherit'
onClick={handleClose}
>
<CloseIcon fontSize='small' />
</IconButton>
</React.Fragment>
}
style={{
backgroundColor: theme.primary,
color: theme.secondary,
fontFamily: 'var(--primaryFont)',
}}
message={errMsg}
/>
</Snackbar>
</div>
<div className='contacts-details'>
<a
href={`mailto:${contactsData.email}`}
className='personal-details'
>
<div className={classes.detailsIcon}>
<FiAtSign />
</div>
<p style={{ color: theme.tertiary }}>
{contactsData.email}
</p>
</a>
<a
href={`tel:${contactsData.phone}`}
className='personal-details'
>
<div className={classes.detailsIcon}>
<FiPhone />
</div>
<p style={{ color: theme.tertiary }}>
{contactsData.phone}
</p>
</a>
<div className='personal-details'>
<div className={classes.detailsIcon}>
<HiOutlineLocationMarker />
</div>
<p style={{ color: theme.tertiary }}>
{contactsData.address}
</p>
</div>
<div className='socialmedia-icons'>
{socialsData.twitter && (
<a
href={socialsData.twitter}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaTwitter aria-label='Twitter' />
</a>
)}
{socialsData.github && (
<a
href={socialsData.github}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaGithub aria-label='GitHub' />
</a>
)}
{socialsData.linkedIn && (
<a
href={socialsData.linkedIn}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaLinkedinIn aria-label='LinkedIn' />
</a>
)}
{socialsData.instagram && (
<a
href={socialsData.instagram}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaInstagram aria-label='Instagram' />
</a>
)}
{socialsData.medium && (
<a
href={socialsData.medium}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaMediumM aria-label='Medium' />
</a>
)}
{socialsData.blogger && (
<a
href={socialsData.blogger}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaBloggerB aria-label='Blogger' />
</a>
)}
{socialsData.youtube && (
<a
href={socialsData.youtube}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaYoutube aria-label='YouTube' />
</a>
)}
{socialsData.reddit && (
<a
href={socialsData.reddit}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaRedditAlien aria-label='Reddit' />
</a>
)}
{socialsData.stackOverflow && (
<a
href={socialsData.stackOverflow}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaStackOverflow aria-label='Stack Overflow' />
</a>
)}
{socialsData.codepen && (
<a
href={socialsData.codepen}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaCodepen aria-label='CodePen' />
</a>
)}
{socialsData.gitlab && (
<a
href={socialsData.gitlab}
target='_blank'
rel='noreferrer'
className={classes.socialIcon}
>
<FaGitlab aria-label='GitLab' />
</a>
)}
</div>
</div>
</div>
</div>
<img
src={theme.contactsimg}
alt='contacts'
className='contacts--img'
/>
</div>
);
}