Skip to content

Commit

Permalink
fix: pass html attirbutes type
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Dec 27, 2024
1 parent 25db04a commit 4b8440d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "concept-be-design-system",
"description": "컨셉비 디자인 시스템",
"version": "0.5.12",
"version": "0.5.13",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Navigation/NavigationItem.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { css } from '@emotion/react';
import styled from '@emotion/styled';
import { ReactNode } from 'react';
import { HtmlHTMLAttributes, ReactNode } from 'react';

type PositionType = 'normal' | 'center';

export interface Props {
export interface Props extends HtmlHTMLAttributes<HTMLDivElement> {
onClick?: () => void;
position?: PositionType;
children: ReactNode;
Expand Down

0 comments on commit 4b8440d

Please sign in to comment.