Pagination
import { Switch } from 'react-custom-components-ui'
const [currentPage, setCurrentPage] = useState(1);
<Pagination
activeBackgroundcolor="#ffedd5"
activeBordercolor="#fed7aa"
activeTextcolor="#ea580c"
borderWidth={1}
borderRadius={8}
width={36}
height={36}
currentPage={currentPage}
totalPage={100}
setCurrentPage={setCurrentPage}
navigationButtonsActiveBackgroundcolor="white"
navigationButtonsInActiveBackgroundcolor="rgba(242, 244, 247, 1)"
navigationButtonsBorderColor="rgba(228, 231, 236, 1)"
inActiveBackgroundcolor="white"
inActiveBordercolor="rgba(228, 231, 236, 1)"
inActiveTextcolor="#4B465C"
textSize={16}
type="icon"
language="en"
/>