I'm using the react schedule control and would like to add dark theme support. I can import the fluent2 light theme without a problem, but the fluent2-dark.css files seem to be missing. Here's how I'm trying to import the required files:
@import "../node_modules/@syncfusion/ej2-base/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-buttons/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-calendars/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-dropdowns/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-lists/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-popups/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-react-schedule/styles/fluent2.css";
@import "../node_modules/@syncfusion/ej2-base/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-buttons/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-calendars/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-dropdowns/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-lists/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-popups/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/fluent2-dark.css";
@import "../node_modules/@syncfusion/ej2-react-schedule/styles/fluent2-dark.css";