# code-block-pro/1.13.0/src/icons.tsx

Code Block Pro – Beautiful Syntax Highlighting, version 1.13.0. 33 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.13.0/code/src/icons.tsx
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.13.0/raw/src/icons.tsx
- Modified: 2022-09-10T00:48:38+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/code-block-pro/1.13.0/code/src/icons.tsx#L10-L20`.

```tsx
export const blockIcon = () => (
    <svg
        xmlns="http://www.w3.org/2000/svg"
        style={{ width: 24, height: 24 }}
        fill="none"
        viewBox="0 0 24 24"
        stroke="#1e1e1e"
        strokeWidth="2">
        <path
            fill="none"
            strokeLinecap="round"
            strokeLinejoin="round"
            d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
        />
    </svg>
);
export const languageIcon = () => (
    <svg
        xmlns="http://www.w3.org/2000/svg"
        style={{ width: 24, height: 24 }}
        fill="none"
        viewBox="0 0 24 24"
        stroke="#1e1e1e"
        strokeWidth={1.5}>
        <path
            fill="none"
            strokeLinecap="round"
            strokeLinejoin="round"
            d="M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5"
        />
    </svg>
);

```
