-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: trigger 와 content 에 ref 추가, style className 에 대해 DefaultPRops 로 변경
- Loading branch information
Showing
5 changed files
with
97 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type { CSSProperties } from "react"; | ||
|
||
/** | ||
* @description 컴포넌트에 전달한 기본적으로 전달한 props 입니다. | ||
* @property {string} className - 컴포넌트에 전달할 커스텀 클래스명입니다. | ||
* @property {CSSProperties} style - 컴포넌트에 전달할 커스텀 스타일입니다. | ||
*/ | ||
export interface DefaultProps { | ||
className?: string; | ||
style?: CSSProperties; | ||
} |