# tableberg/1.1.5/shared/icons/tableberg.tsx

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 60 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/shared/icons/tableberg.tsx
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/shared/icons/tableberg.tsx
- Modified: 2026-09-16T03:30:32+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/tableberg/1.1.5/code/shared/icons/tableberg.tsx#L10-L20`.

```tsx
const TablebergIcon = (
    <svg
        width="256"
        height="256"
        viewBox="0 0 256 256"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
    >
        <rect width="256" height="256" fill="white" />
        <g clipPath="url(#clip0_50_2)">
            <rect
                x="30"
                y="30"
                width="196"
                height="39.2"
                rx="3.92"
                fill="#671FEB"
            />
            <rect
                x="112.32"
                y="108.4"
                width="113.68"
                height="39.2"
                rx="3.92"
                fill="#671FEB"
            />
            <rect
                x="112.32"
                y="186.8"
                width="113.68"
                height="39.2"
                rx="3.92"
                fill="#671FEB"
            />
            <rect
                x="30"
                y="108.4"
                width="39.2"
                height="117.6"
                rx="3.92"
                fill="#671FEB"
            />
        </g>
        <defs>
            <clipPath id="clip0_50_2">
                <rect
                    x="30"
                    y="30"
                    width="196"
                    height="196"
                    rx="19.6"
                    fill="white"
                />
            </clipPath>
        </defs>
    </svg>
);

export default TablebergIcon;

```
