mirror of
https://github.com/System-End/site.git
synced 2026-04-19 19:45:07 +00:00
88 lines
1.8 KiB
JavaScript
88 lines
1.8 KiB
JavaScript
import { Badge, Flex, Link, Image, Text, Box } from 'theme-ui'
|
|
import RelativeTime from 'react-relative-time'
|
|
|
|
export default function GitHub({
|
|
type,
|
|
img,
|
|
user,
|
|
key,
|
|
text,
|
|
time,
|
|
message,
|
|
...props
|
|
}) {
|
|
return (
|
|
<Badge
|
|
variant="pill"
|
|
bg="snow"
|
|
as='a'
|
|
href='https://github.com/hackclub'
|
|
target='_blank'
|
|
rel='noopener'
|
|
sx={{
|
|
color: 'black',
|
|
textDecoration: 'none',
|
|
fontWeight: '400',
|
|
zIndex: 4,
|
|
px: '4px !important',
|
|
py: '2px !important',
|
|
width: '100%',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
gap: '1rem',
|
|
height: '2rem',
|
|
width: 'fit-content',
|
|
maxWidth: '30rem',
|
|
}}
|
|
{...props}
|
|
>
|
|
<Image
|
|
alt='GitHub user avatar'
|
|
src={img}
|
|
sx={{ borderRadius: '100%', height: '90%', mr: 2, flexShrink: 0, }}
|
|
/>
|
|
<Text
|
|
sx={{
|
|
mr: 2,
|
|
textOverflow: 'ellipsis',
|
|
display: 'inline-block',
|
|
overflow: 'hidden',
|
|
whiteSpace: 'nowrap',
|
|
flexShrink: 0,
|
|
display: [
|
|
'none',
|
|
'inline-block',
|
|
'inline-block',
|
|
'inline-block'
|
|
]
|
|
}}
|
|
>
|
|
{user}
|
|
</Text>
|
|
<Text
|
|
sx={{
|
|
textOverflow: 'ellipsis',
|
|
maxWidth: '100%',
|
|
display: 'inline-block',
|
|
overflow: 'hidden',
|
|
whiteSpace: 'nowrap',
|
|
flexShrink: 1,
|
|
}}
|
|
>
|
|
{message}
|
|
</Text>
|
|
<Text
|
|
as="span"
|
|
sx={{
|
|
fontSize: ['8px', '8px', '10px'],
|
|
color: 'inherit',
|
|
mx: 2,
|
|
flexShrink: 0,
|
|
ml: 'auto',
|
|
}}
|
|
>
|
|
<RelativeTime value={time} titleformat="iso8601" />
|
|
</Text>
|
|
</Badge>
|
|
)
|
|
}
|