UNPKG

214 BTypeScriptView Raw
1import React from "react";
2
3import { DayPicker } from "react-day-picker";
4
5export function StylingInline() {
6 return (
7 <DayPicker
8 styles={{
9 month_caption: { color: "red" }
10 }}
11 />
12 );
13}