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.
11 lines
479 B
11 lines
479 B
import React from "react"; |
|
import pdfIcon from "./pdf.svg"; |
|
|
|
export default function PDF({ name, file }) { |
|
return ( |
|
<div className="w-full flex-row justify-between items-center rounded-md bg-red-100 bg-opacity-50 py-6 px-2 mt-5 relative dark:bg-opacity-10"> |
|
<strong className="text-right text-red-900 text-xs font-normal dark:text-white">{name}</strong> |
|
<img src={pdfIcon} className="w-8 absolute left-2 top-1/2 transform -translate-y-1/2" /> |
|
</div> |
|
); |
|
}
|
|
|