1234567891011121314151617181920212223242526272829303132 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`TextCopyInput renders 1`] = `
- <Flex>
- <OverflowContainer>
- <StyledInput
- onClick={[Function]}
- readOnly={true}
- value="Text to Copy"
- />
- </OverflowContainer>
- <Clipboard
- errorMessage="Error copying to clipboard"
- hideMessages={false}
- hideUnsupported={true}
- onClick={[Function]}
- successMessage="Copied to clipboard"
- value="Text to Copy"
- >
- <StyledCopyButton
- onClick={[Function]}
- size="xsmall"
- type="button"
- >
- <InlineSvg
- size="1.25em"
- src="icon-clipboard"
- />
- </StyledCopyButton>
- </Clipboard>
- </Flex>
- `;
|