AbdulElahGwaith's picture
Upload folder using huggingface_hub
84c1942 verified
Raw
History Blame Contribute Delete
320 Bytes
import styled, { css } from 'styled-components';
export const Stats = styled.div<{ vertical: boolean }>`
display: flex;
${props =>
props.vertical
? css`
flex-direction: column;
`
: css`
flex-direction: row;
align-items: center;
`};
height: 100%;
`;