refactor: update component imports to use @styles alias

Co-authored-by: aider (openrouter/meta-llama/llama-4-maverick) <aider@aider.chat>
This commit is contained in:
2026-01-20 15:57:25 +00:00
parent 84b1dccab0
commit b791525f1e
3 changed files with 0 additions and 22 deletions

View File

@@ -1,17 +1 @@
import styles from '@styles/m3-scss/button.module.scss';
interface ButtonProps {
children: React.ReactNode;
className?: string;
onClick?: () => void;
}
function Button({ children, className, onClick }: ButtonProps) {
return (
<button className={`${styles.button} ${className}`} onClick={onClick}>
{children}
</button>
);
}
export default Button;

View File

@@ -1,4 +1 @@
import { cn } from "@/lib/utils"
import styles from '@styles/m3-scss/hover-card.module.scss';
// rest of the code remains the same

View File

@@ -1,4 +1 @@
import { cn } from "@/lib/utils"
import styles from '@styles/m3-scss/sheet.module.scss';
// rest of the code remains the same