You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
317 B
JavaScript

"use strict";
const React = require("react");
module.exports = function DistroSpecific({ children }) {
return (
<div className="distroSpecific">
<img src="/assets/nix-snowflake.svg" alt="Nix Snowflake Icon" className="icon"/>
<p>
<strong>For NixOS users:</strong>
</p>
{children}
</div>
);
};