Code
Props
Props
Data Type
Required
onClick Prop Event
const customAction = (e)=>{
console.log(e);
}
return(
<div>
...
<Telicon name='bell' onClick={customAction} />
...
</div>
)Live Demo
React
Last updated