Skip to content

Commit 8bb2908

Browse files
committed
Feat: 마크다운 에디터 추가
1 parent bcf0dae commit 8bb2908

File tree

12 files changed

+942
-20
lines changed

12 files changed

+942
-20
lines changed

frontend/packages/ui/src/components/Input/Input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const Input = React.forwardRef<HTMLInputElement, Props>(
1919
ref,
2020
) => {
2121
return (
22-
<p className={cn(className, 'mb-[15px]')}>
22+
<p className={className}>
2323
{label && <label className={labelStyle}>{label}</label>}
2424
<input ref={ref} id={id} className={cn(inputStyle, inputClassName)} type={type} {...props} />
2525
</p>

frontend/packages/ui/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export * from './components/Button/Button';
22
export * from './components/Input/SearchInput';
3+
export * from './components/Input/Input';
34
export * from './components/Typography/Typography';
45
export * from './components/Calendar/Calendar';
56
export * from './components/Card/Card';

0 commit comments

Comments
 (0)