resize svg bs note

This commit is contained in:
MathieuG-P
2022-05-22 22:52:42 +02:00
parent e2f95639d4
commit 66aa79785c
2 changed files with 12 additions and 2 deletions
+6 -1
View File
@@ -1 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 541.867 541.867" height="2048" width="2048"><g transform="translate(0 244.867)"><rect rx="69.453" y="-177.133" x="67.733" height="406.4" width="406.4" fill="currentColor" fill-rule="evenodd" paint-order="fill markers stroke"/><path d="M135.467-109.4H406.4v33.867L270.933-7.8 135.467-75.533z" fill="white" /></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 406.4 406.4" height="406.4" width="406.4">
<g>
<rect rx="69.453" height="406.4" width="406.4" fill="currentColor" fill-rule="evenodd" paint-order="fill markers stroke"/>
<path transform="translate(-70 170)" d="M135.467-109.4H406.4v33.867L270.933-7.8 135.467-75.533z" fill="white" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 370 B

After

Width:  |  Height:  |  Size: 371 B

@@ -3,6 +3,11 @@
export function BsNoteFill({className}: {className: string}) {
return (
<svg className={className} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 541.867 541.867" height="2048" width="2048"><g transform="translate(0 244.867)"><rect rx="69.453" y="-177.133" x="67.733" height="406.4" width="406.4" fill="currentColor" fillRule="evenodd" paintOrder="fill markers stroke"/><path d="M135.467-109.4H406.4v33.867L270.933-7.8 135.467-75.533z" fill="white" /></g></svg>
<svg className={className} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 406.4 406.4" height="406.4" width="406.4">
<g>
<rect rx="69.453" height="406.4" width="406.4" fill="currentColor" fillRule="evenodd" paintOrder="fill markers stroke"/>
<path transform="translate(-70 170)" d="M135.467-109.4H406.4v33.867L270.933-7.8 135.467-75.533z" fill="white" />
</g>
</svg>
)
}