Skip to content

Commit

Permalink
fix: remove deprecated from ContainerType
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Sep 9, 2024
1 parent a55d28b commit 641dd15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Container/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface ContainerProps extends RBContainerProps {
size?: ContainerSize;
}

type ContainerType = ComponentWithAsProp<'div', ContainerProps> & { Deprecated?: any };
type ContainerType = ComponentWithAsProp<'div', ContainerProps>;

const Container: ContainerType = React.forwardRef<HTMLDivElement, ContainerProps>(({
size,
Expand Down

0 comments on commit 641dd15

Please sign in to comment.