lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.
61 lines • 2.82 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.AspectRatio = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
const React = __importStar(require("react"));
const utils_1 = require("@/components/lib/utils");
const AspectRatio = React.forwardRef(({ className, ratio: propRatio, preset, rounded = false, bordered = false, objectFit, style, ...props }, ref) => {
// Predefined aspect ratios
const presetRatios = {
square: 1, // 1:1
video: 16 / 9, // 16:9
portrait: 3 / 4, // 3:4
widescreen: 16 / 9, // 16:9
ultrawide: 21 / 9, // 21:9
golden: 1.618 // Golden ratio
};
// Determine the final ratio to use
const ratio = propRatio || (preset ? presetRatios[preset] : 1);
return ((0, jsx_runtime_1.jsx)("div", { ref: ref, style: {
position: "relative",
width: "100%",
paddingBottom: `${(1 / ratio) * 100}%`,
...style,
}, className: (0, utils_1.cn)("overflow-hidden", rounded && "rounded-md", bordered && "border ", className), ...props, children: props.children && ((0, jsx_runtime_1.jsx)("div", { className: (0, utils_1.cn)("absolute inset-0 h-full w-full", objectFit && `[&>img]:object-${objectFit} [&>video]:object-${objectFit}`), children: props.children })) }));
});
exports.AspectRatio = AspectRatio;
AspectRatio.displayName = "AspectRatio";
//# sourceMappingURL=aspect-ratio.js.map