Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/0127f934550ddf6be0d81b242852d0410b0f8f38f35bf726d449e0faada999744d68cf5e679c57fa0109e45761588a569ef7ef6f020912eee59395ce709139
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

12 lines
249 B
Text

import {sqrt} from "../math.js";
export default {
draw(context, size) {
const r = sqrt(size) * 0.62625;
context.moveTo(0, -r);
context.lineTo(r, 0);
context.lineTo(0, r);
context.lineTo(-r, 0);
context.closePath();
}
};