Rocky_Mountain_Vending/.pnpm-store/v10/files/64/9cdc01296361e1d24a59c81320eb71e2783150ee5a36fd94f969093123df5dafed6bd73c6ba8fa21941b3101d462e572b6cbcd6f795e7777b9bcb621166a6d
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

21 lines
No EOL
398 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _math = require("../math.js");
var _default = {
draw(context, size) {
const r = (0, _math.sqrt)(size) * 0.4431;
context.moveTo(r, r);
context.lineTo(r, -r);
context.lineTo(-r, -r);
context.lineTo(-r, r);
context.closePath();
}
};
exports.default = _default;