import React from "react"; import Slider from "react-slick"; function VariableWidth() { const settings = { className: "slider variable-width", dots: true, infinite: true, centerMode: true, slidesToShow: 1, slidesToScroll: 1, variableWidth: true }; return (

100

200

75

300

225

175

); } export default VariableWidth;