deprecated
2 months ago
block.json
1 month ago
edit.js
2 months ago
icon.svg
2 months ago
index.js
2 months ago
index.php
2 months ago
save.js
2 months ago
style.scss
2 months ago
save.js
21 lines
| 1 | import { InnerBlocks, useBlockProps } from '@wordpress/block-editor'; |
| 2 | |
| 3 | export default function save(props) { |
| 4 | const { attributes } = props; |
| 5 | const { iconsJustify } = attributes; |
| 6 | //blocksProps を予め定義 |
| 7 | const blockProps = useBlockProps.save({ |
| 8 | className: `vk_icons`, |
| 9 | }); |
| 10 | |
| 11 | return ( |
| 12 | <div {...blockProps}> |
| 13 | <div |
| 14 | className={`vk_icons_col vk_icons_col-justify-${iconsJustify}`} |
| 15 | > |
| 16 | <InnerBlocks.Content /> |
| 17 | </div> |
| 18 | </div> |
| 19 | ); |
| 20 | } |
| 21 |