feat: sidebar items darkmode

This commit is contained in:
Ahmed Bouhuolia
2025-10-18 16:04:49 +02:00
parent 54400b223f
commit c1c8097c92
4 changed files with 22 additions and 10 deletions

View File

@@ -1,8 +1,13 @@
// @ts-nocheck
import React from 'react';
import styled from 'styled-components';
export function Card({ className, style, children }) {
interface CardProps {
className?: string;
style?: React.CSSProperties;
children?: React.ReactNode;
}
export function Card({ className, style, children }: CardProps) {
return (
<CardRoot className={className} style={style}>
{children}