@diagramers/admin
Version:
Diagramers Admin Template - React starter for admin dashboards.
40 lines (37 loc) • 2.31 kB
JavaScript
import React from 'react';
import CsLineIcons from 'cs-line-icons/CsLineIcons';
const ImagesIconThumbs = () => {
return (
<>
<div className="d-flex justify-content-start">
<div className="sw-4 sh-4 me-1 mb-1 d-inline-block bg-separator d-flex justify-content-center align-items-center rounded-xl">
<CsLineIcons icon="user" width="20" height="20" className="cs-icon icon text-alternate" />
</div>
<div className="sw-5 sh-5 me-1 mb-1 d-inline-block bg-separator d-flex justify-content-center align-items-center rounded-xl">
<CsLineIcons icon="user" width="20" height="20" className="cs-icon icon text-alternate" />
</div>
<div className="sw-6 sh-6 me-1 mb-1 d-inline-block bg-separator d-flex justify-content-center align-items-center rounded-xl">
<CsLineIcons icon="user" width="20" height="20" className="cs-icon icon text-alternate" />
</div>
<div className="sw-7 sh-7 me-1 mb-1 d-inline-block bg-separator d-flex justify-content-center align-items-center rounded-xl">
<CsLineIcons icon="user" width="20" height="20" className="cs-icon icon text-alternate" />
</div>
</div>
<div className="d-flex justify-content-start">
<div className="sw-4 sh-4 me-1 mb-1 d-inline-block bg-separator d-flex justify-content-center align-items-center rounded-md">
<CsLineIcons icon="user" width="20" height="20" className="cs-icon icon text-alternate" />
</div>
<div className="sw-5 sh-5 me-1 mb-1 d-inline-block bg-separator d-flex justify-content-center align-items-center rounded-md">
<CsLineIcons icon="user" width="20" height="20" className="cs-icon icon text-alternate" />
</div>
<div className="sw-6 sh-6 me-1 mb-1 d-inline-block bg-separator d-flex justify-content-center align-items-center rounded-md">
<CsLineIcons icon="user" width="20" height="20" className="cs-icon icon text-alternate" />
</div>
<div className="sw-7 sh-7 me-1 mb-1 d-inline-block bg-separator d-flex justify-content-center align-items-center rounded-md">
<CsLineIcons icon="user" width="20" height="20" className="cs-icon icon text-alternate" />
</div>
</div>
</>
);
};
export default ImagesIconThumbs;