import React from 'react'; import Widget from '../../../Widget'; import Image from '../../../../../Components/Image'; import { Row, Col } from 'reactstrap'; const Images: React.FC = () => { const colors = ['grey', 'red', 'orange', 'yellow', 'green', 'teal', 'blue', 'indigo', 'purple', 'pink']; return (
Images
Rounded images
Use the .rounded class for rounded images
Circular images
Use the .rounded-circle class for circular images
Raised images
Use the .shadow class for raised images
Bordered images
Use the .shadow-outline-color classNames to add an inner border to your images
{colors.map((value, index) => { const array = []; for (let i = 3; i < 10; i++) { array.push( , ); } return ( {array} ); })}
); }; export default Images;