Skip to content

Commit 63a1f46

Browse files
committed
fix: EmptyStatePlaceholderProps
1 parent f119b65 commit 63a1f46

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solved-ac/ui-react",
3-
"version": "0.0.1-alpha.27",
3+
"version": "0.0.1-alpha.28",
44
"description": "React component library used by solved.ac",
55
"author": "shiftpsh",
66
"license": "MIT",
@@ -76,4 +76,4 @@
7676
"files": [
7777
"dist"
7878
]
79-
}
79+
}

src/components/EmptyStatePlaceholder.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ const EmptyStatePlaceholderContainer = styled.div<EmptyStatePlaceholderContainer
2323
text-align: center;
2424
`
2525

26-
// eslint-disable-next-line @typescript-eslint/no-empty-interface
27-
export interface EmptyStatePlaceholderProps {}
26+
export interface EmptyStatePlaceholderProps {
27+
padding?: 'none' | 'normal' | 'wide'
28+
}
2829

2930
export const EmptyStatePlaceholder: PC<'div', EmptyStatePlaceholderProps> =
3031
React.forwardRef(

0 commit comments

Comments
 (0)