@diagramers/admin
Version:
Diagramers Admin Template - React starter for admin dashboards.
14 lines (11 loc) • 469 B
JavaScript
import React from 'react';
const ImagesAligning = () => {
return (
<>
<img src="/img/product/small/product-2.webp" className="rounded mb-1 float-start sw-18" alt="card image" />
<img src="/img/product/small/product-2.webp" className="rounded mb-1 float-end sw-18" alt="card image" />
<img src="/img/product/small/product-2.webp" className="rounded mx-auto mb-1 d-block sw-18" alt="card image" />
</>
);
};
export default ImagesAligning;