UNPKG

@chayns-components/core

Version:

A set of beautiful React components for developing your own applications with chayns.

23 lines 559 B
import styled, { css } from 'styled-components'; export const StyledSignature = styled.div``; export const StyledSignatureImageWrapper = styled.div` position: relative; aspect-ratio: 3.8; width: 100%; `; export const StyledSignatureImage = styled.img` ${_ref => { let { theme } = _ref; return theme.colorMode === 'dark' && css` filter: invert(1); `; }} `; export const StyledSignatureDeleteIconWrapper = styled.div` position: absolute; top: 0; right: 0; `; //# sourceMappingURL=Signature.styles.js.map