Rename Box

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2024-12-09 13:46:59 +00:00
parent 11c7bb4d44
commit a6d10b2892
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export const Box = forwardRef<HTMLDivElement, BoxProps>((props, ref) => {
const sprinklesClassName = boxSprinkles(restProps);
// Combine the base class name, the sprinkles class name, and any additional class names
const classNames = ['canon-box', sprinklesClassName, className]
const classNames = ['box', sprinklesClassName, className]
.filter(Boolean)
.join(' ');
+1 -1
View File
@@ -1,4 +1,4 @@
.canon-box {
.box {
font-family: 'var(--canon-font-regular)';
color: 'var(--canon-text-primary)';
}