import { styled as e } from "styled-components";
const i = e.video`
object-fit: cover;
width: 100%;
height: auto;
${({ $aspectRatio: t }) => t ? `aspect-ratio: ${t};` : ""}
filter: ${({ $darken: t }) => t ? `brightness(${t})` : "none"};
`;
export {
i as StyledVideo
};