@wordpress/components
Version:
UI components for WordPress.
36 lines • 818 B
JavaScript
/**
* Internal dependencies
*/
import { GridView, GridLineX, GridLineY } from './styles/focal-point-picker-style';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
export default function FocalPointPickerGrid({
bounds,
...props
}) {
return /*#__PURE__*/_jsxs(GridView, {
...props,
className: "components-focal-point-picker__grid",
style: {
width: bounds.width,
height: bounds.height
},
children: [/*#__PURE__*/_jsx(GridLineX, {
style: {
top: '33%'
}
}), /*#__PURE__*/_jsx(GridLineX, {
style: {
top: '66%'
}
}), /*#__PURE__*/_jsx(GridLineY, {
style: {
left: '33%'
}
}), /*#__PURE__*/_jsx(GridLineY, {
style: {
left: '66%'
}
})]
});
}
//# sourceMappingURL=grid.js.map