import styled from "styled-components"; import { compose } from "styled-system"; import { allSystemStyle, AllSystemProps } from "./system/unions"; export type TrProps = AllSystemProps & React.HTMLAttributes; export const Tr = styled.tr>( compose(...allSystemStyle) ); Tr.displayName = "Tr";