React Icon Bar Code 1
React
import React from 'react'; import ReactDOM from 'react-dom'; import ReactDOM from 'react-dom/client'; function Iconbar() { return( <>
> ); } ReactDOM.render(
, document.getElementById('root')); const root = ReactDOM.createRoot(document.getElementById('root')); root.render(
); const GetIconbar = () => { return( <>
> ); } export default GetIconbar; export const GetIconbar = () => { return( <>
> ); }
CSS
.iconbar{ width: 40px; height: 40px; border: 2px solid #19a9a6; font-size: 14px; color: #000000; background: #f1f1f1; }
Follow Us