--- order: 9 title: zh-CN: 色付きポップアップ en-US: Colored Popup debug: true --- ## zh-CN カスタムクラスを `TimePicker`ポップアップに渡す ## en-US Passing custom class to `TimePicker` popup ```jsx import { TimePicker } from 'antd'; import dayjs from 'dayjs'; import customParseFormat from 'dayjs/plugin/customParseFormat'; dayjs.extend(customParseFormat); const onChange = (time, timeString) => { console.log(time, timeString); }; export default () => ( ); ``` ```css .myCustomClassName .ant-picker-time-panel-cell-inner { color: red !important; } ```