adjust FileGraphic to fill thumbnail area

This commit is contained in:
Elliot DeNolf
2020-10-15 15:00:16 -04:00
parent e52b639e64
commit 76df2bc75a

View File

@@ -1,30 +1,28 @@
import React from 'react';
const File = () => {
return (
<svg
const File = () => (
<svg
width="150"
height="150"
viewBox="0 0 150 150"
xmlns="http://www.w3.org/2000/svg"
>
<rect
width="150"
height="120"
viewBox="0 0 150 120"
xmlns="http://www.w3.org/2000/svg"
>
<rect
width="150"
height="120"
transform="translate(0 0.5)"
fill="#333333"
/>
<path
d="M82.8876 35.5H55.5555V85.5H94.4444V46.9818H82.8876V35.5Z"
fill="white"
/>
<path
d="M82.8876 46.9818H94.4444L82.8876 35.5V46.9818Z"
fill="#9A9A9A"
/>
height="150"
transform="translate(0 0.5)"
fill="#333333"
/>
<path
d="M82.8876 50.5H55.5555V100.5H94.4444V61.9818H82.8876V50.5Z"
fill="white"
/>
<path
d="M82.8876 61.9818H94.4444L82.8876 50.5V61.9818Z"
fill="#9A9A9A"
/>
</svg>
);
};
</svg>
);
export default File;