mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 01:11:08 +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 {
|
interface StyledTextareaProps {
|
||||||
shown: boolean;
|
shown: boolean;
|
||||||
failed: 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',
|
flex: '1 0 0',
|
||||||
boxSizing: 'border-box',
|
boxSizing: 'border-box',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user