import { Download } from 'lucide-react'; import { motion } from 'framer-motion'; interface DownloadButtonProps { version: string; size: string; url: string; } export function DownloadButton({ version, size, url }: DownloadButtonProps) { return (

Snigdha OS {version}

{size}

); }