You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
336 B
20 lines
336 B
2 years ago
|
import styled from "styled-components"
|
||
|
|
||
|
const RepoCardCont = styled.div`
|
||
|
display: flex;
|
||
|
|
||
|
h3 a {
|
||
|
color: var(--fg);
|
||
|
}
|
||
|
`
|
||
|
|
||
|
const RepoCard = (props: any) => { // TODO: make schema
|
||
|
return (
|
||
|
<RepoCardCont key={props.id}>
|
||
|
<h3><a href={props.url} target="_blank">{props.name}</a></h3>
|
||
|
</RepoCardCont>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default RepoCard
|