import React from 'react';
import { PixelBox } from './PixelBox';
export function Default() {
return (
Surface-aware container box.
);
}
export function Outline() {
return (
Outline variant with implicit border.
);
}
export function Soft() {
return (
Soft tonal background.
);
}
export function AsSection() {
return (
Rendered as a semantic section landmark.
);
}