import styled from "styled-components"; import { compose } from "styled-system"; import { allSystemStyle, AllSystemProps } from "./system/unions"; export type BaseImageProps = AllSystemProps; export const BaseImage = styled.img>( compose(...allSystemStyle) ); BaseImage.displayName = "BaseImage";