import { Astal } from 'astal/gtk3';
import RoundedCorner from './screen-corners';
const TopLeft = () => (
{RoundedCorner('topleft')}
);
const TopRight = () => (
{RoundedCorner('topright')}
);
const BottomLeft = () => (
{RoundedCorner('bottomleft')}
);
const BottomRight = () => (
{RoundedCorner('bottomright')}
);
export default () => [
TopLeft(),
TopRight(),
BottomLeft(),
BottomRight(),
];