testing docker compse

This commit is contained in:
briannelson95
2025-06-30 17:20:27 -04:00
parent 6efc29c669
commit 079fecc7c0
11 changed files with 678 additions and 240 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react'
export default function EllipsisIcon() {
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" className="size-6">
<path strokeLinecap="round" strokeLinejoin="round" d="M12 6.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM12 12.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM12 18.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z" />
</svg>
)
}