# post-carousel/4.0.7/src/blocks/smart-image/constant.js

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 4.0.7. 56 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/4.0.7/code/src/blocks/smart-image/constant.js
- Raw: https://pluginprobe.com/plugins/post-carousel/4.0.7/raw/src/blocks/smart-image/constant.js
- Modified: 2026-04-24T11:48:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/post-carousel/4.0.7/code/src/blocks/smart-image/constant.js#L10-L20`.

```javascript
import {
	ShapedEight,
	ShapedEleven,
	ShapedFive,
	ShapedFour,
	ShapedNine,
	ShapedOne,
	ShapedSeven,
	ShapedSix,
	ShapedTen,
	ShapedThree,
	ShapedTwelve,
	ShapedTwo,
} from "./icon";

// Comment out items available in upcoming version.
export const shapeButtonSet = [
	{ label: <ShapedOne />, value: "original" },
	{ label: <ShapedTwo />, value: "shape-two" },
	// { label: <ShapedThree />, value: 'shape-three' },
	// { label: <ShapedFour />, value: 'shape-four' },
	// { label: <ShapedFive />, value: 'shape-five' },
	{ label: <ShapedSix />, value: "shape-six" },
	{ label: <ShapedSeven />, value: "shape-seven" },
	// { label: <ShapedEight />, value: 'shape-eight' },
	// { label: <ShapedNine />, value: 'shape-nine' },
	// { label: <ShapedTen />, value: 'shape-ten' },
	// { label: <ShapedEleven />, value: 'shape-eleven' },
	// { label: <ShapedTwelve />, value: 'shape-twelve' },
];

export const hoverEffectItems = [
	{ label: "None", value: "" },
	{ label: "Zoom In", value: "zoom-in" },
	{ label: "Jazz (Pro)", value: "jazz", disabled: true },
	{ label: "Apollo (Pro)", value: "apollo", disabled: true },
	{ label: "Selena (Pro)", value: "selena", disabled: true },
	{ label: "Oscar (Pro)", value: "oscar", disabled: true },
	{ label: "Layla (Pro)", value: "layla", disabled: true },
	{ label: "Zoom Out (Pro)", value: "zoom-out", disabled: true },
	{ label: "Move Left (Pro)", value: "move-left", disabled: true },
	{ label: "Move Right (Pro)", value: "move-right", disabled: true },
	{ label: "Move Top (Pro)", value: "move-top", disabled: true },
	{ label: "Move Bottom (Pro)", value: "move-bottom", disabled: true }
];
export const hoverEffectShortItems = [
	{ label: "None", value: "" },
	{ label: "Zoom In", value: "zoom-in" },
	{ label: "Apollo (Pro)", value: "apollo", disabled: true },
	{ label: "Zoom Out (Pro)", value: "zoom-out", disabled: true },
	{ label: "Move Left (Pro)", value: "move-left", disabled: true },
	{ label: "Move Right (Pro)", value: "move-right", disabled: true },
	{ label: "Move Top (Pro)", value: "move-top", disabled: true },
	{ label: "Move Bottom (Pro)", value: "move-bottom", disabled: true }
];

```
