This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/sia-skynet/src/components/Sample/Sample.js

20 lines
514 B
JavaScript
Raw Normal View History

2020-02-12 17:23:10 +00:00
import React from 'react'
import classNames from 'classnames'
import './Sample.scss'
import { Download } from '../../svg'
export default function Sample({ type, url, className }) {
return (
<div className={classNames('sample', className)}>
2020-02-13 21:11:07 +00:00
<a href={url} target="_blank" rel="noopener noreferrer">
2020-02-12 17:23:10 +00:00
<Download />
<span className="sample-name">
<strong>{type}</strong> Sample
</span>
<span className="sample-download">Download</span>
</a>
</div>
)
}