mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
fix: remove receiving non-boolean attribute console warning
This commit is contained in:
parent
f420cbbaaa
commit
220b17e8aa
@ -11,9 +11,13 @@ import { OnEmitEvent } from '../index';
|
||||
interface StyledTextareaProps {
|
||||
shown: boolean;
|
||||
failed: boolean;
|
||||
value?: string;
|
||||
onChange?: (event: React.ChangeEvent<HTMLTextAreaElement>) => void;
|
||||
}
|
||||
|
||||
const StyledTextarea = styled(Textarea)<StyledTextareaProps>(
|
||||
const StyledTextarea = styled(({ shown, failed, ...rest }: StyledTextareaProps) => (
|
||||
<Textarea {...rest} />
|
||||
))(
|
||||
{
|
||||
flex: '1 0 0',
|
||||
boxSizing: 'border-box',
|
||||
|
Loading…
x
Reference in New Issue
Block a user