{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "table-toolbar-button",
  "title": "Table Toolbar Button",
  "description": "A menu for table manipulation and formatting.",
  "dependencies": [
    "@platejs/table"
  ],
  "registryDependencies": [
    "dropdown-menu",
    "https://platejs.org/r/toolbar.json"
  ],
  "files": [
    {
      "path": "src/registry/ui/table-toolbar-button.tsx",
      "content": "'use client';\n\nimport * as React from 'react';\n\nimport type { DropdownMenuProps } from '@radix-ui/react-dropdown-menu';\n\nimport { TablePlugin, useTableMergeState } from '@platejs/table/react';\nimport {\n  ArrowDown,\n  ArrowLeft,\n  ArrowRight,\n  ArrowUp,\n  Combine,\n  Grid3x3Icon,\n  Table,\n  Trash2Icon,\n  Ungroup,\n  XIcon,\n} from 'lucide-react';\nimport { KEYS } from 'platejs';\nimport { useEditorPlugin, useEditorSelector } from 'platejs/react';\n\nimport {\n  DropdownMenu,\n  DropdownMenuContent,\n  DropdownMenuGroup,\n  DropdownMenuItem,\n  DropdownMenuSub,\n  DropdownMenuSubContent,\n  DropdownMenuSubTrigger,\n  DropdownMenuTrigger,\n} from '@/components/ui/dropdown-menu';\nimport { cn } from '@/lib/utils';\n\nimport { ToolbarButton } from './toolbar';\n\nexport function TableToolbarButton(props: DropdownMenuProps) {\n  const tableSelected = useEditorSelector(\n    (editor) => editor.api.some({ match: { type: KEYS.table } }),\n    []\n  );\n\n  const { editor, tf } = useEditorPlugin(TablePlugin);\n  const [open, setOpen] = React.useState(false);\n  const mergeState = useTableMergeState();\n\n  return (\n    <DropdownMenu open={open} onOpenChange={setOpen} modal={false} {...props}>\n      <DropdownMenuTrigger asChild>\n        <ToolbarButton pressed={open} tooltip=\"Table\" isDropdown>\n          <Table />\n        </ToolbarButton>\n      </DropdownMenuTrigger>\n\n      <DropdownMenuContent\n        className=\"flex w-[180px] min-w-0 flex-col\"\n        align=\"start\"\n      >\n        <DropdownMenuGroup>\n          <DropdownMenuSub>\n            <DropdownMenuSubTrigger className=\"gap-2 data-[disabled]:pointer-events-none data-[disabled]:opacity-50\">\n              <Grid3x3Icon className=\"size-4\" />\n              <span>Table</span>\n            </DropdownMenuSubTrigger>\n            <DropdownMenuSubContent className=\"m-0 p-0\">\n              <TablePicker />\n            </DropdownMenuSubContent>\n          </DropdownMenuSub>\n\n          <DropdownMenuSub>\n            <DropdownMenuSubTrigger\n              className=\"gap-2 data-[disabled]:pointer-events-none data-[disabled]:opacity-50\"\n              disabled={!tableSelected}\n            >\n              <div className=\"size-4\" />\n              <span>Cell</span>\n            </DropdownMenuSubTrigger>\n            <DropdownMenuSubContent>\n              <DropdownMenuItem\n                className=\"min-w-[180px]\"\n                disabled={!mergeState.canMerge}\n                onSelect={() => {\n                  tf.table.merge();\n                  editor.tf.focus();\n                }}\n              >\n                <Combine />\n                Merge cells\n              </DropdownMenuItem>\n              <DropdownMenuItem\n                className=\"min-w-[180px]\"\n                disabled={!mergeState.canSplit}\n                onSelect={() => {\n                  tf.table.split();\n                  editor.tf.focus();\n                }}\n              >\n                <Ungroup />\n                Split cell\n              </DropdownMenuItem>\n            </DropdownMenuSubContent>\n          </DropdownMenuSub>\n\n          <DropdownMenuSub>\n            <DropdownMenuSubTrigger\n              className=\"gap-2 data-[disabled]:pointer-events-none data-[disabled]:opacity-50\"\n              disabled={!tableSelected}\n            >\n              <div className=\"size-4\" />\n              <span>Row</span>\n            </DropdownMenuSubTrigger>\n            <DropdownMenuSubContent>\n              <DropdownMenuItem\n                className=\"min-w-[180px]\"\n                disabled={!tableSelected}\n                onSelect={() => {\n                  tf.insert.tableRow({ before: true });\n                  editor.tf.focus();\n                }}\n              >\n                <ArrowUp />\n                Insert row before\n              </DropdownMenuItem>\n              <DropdownMenuItem\n                className=\"min-w-[180px]\"\n                disabled={!tableSelected}\n                onSelect={() => {\n                  tf.insert.tableRow();\n                  editor.tf.focus();\n                }}\n              >\n                <ArrowDown />\n                Insert row after\n              </DropdownMenuItem>\n              <DropdownMenuItem\n                className=\"min-w-[180px]\"\n                disabled={!tableSelected}\n                onSelect={() => {\n                  tf.remove.tableRow();\n                  editor.tf.focus();\n                }}\n              >\n                <XIcon />\n                Delete row\n              </DropdownMenuItem>\n            </DropdownMenuSubContent>\n          </DropdownMenuSub>\n\n          <DropdownMenuSub>\n            <DropdownMenuSubTrigger\n              className=\"gap-2 data-[disabled]:pointer-events-none data-[disabled]:opacity-50\"\n              disabled={!tableSelected}\n            >\n              <div className=\"size-4\" />\n              <span>Column</span>\n            </DropdownMenuSubTrigger>\n            <DropdownMenuSubContent>\n              <DropdownMenuItem\n                className=\"min-w-[180px]\"\n                disabled={!tableSelected}\n                onSelect={() => {\n                  tf.insert.tableColumn({ before: true });\n                  editor.tf.focus();\n                }}\n              >\n                <ArrowLeft />\n                Insert column before\n              </DropdownMenuItem>\n              <DropdownMenuItem\n                className=\"min-w-[180px]\"\n                disabled={!tableSelected}\n                onSelect={() => {\n                  tf.insert.tableColumn();\n                  editor.tf.focus();\n                }}\n              >\n                <ArrowRight />\n                Insert column after\n              </DropdownMenuItem>\n              <DropdownMenuItem\n                className=\"min-w-[180px]\"\n                disabled={!tableSelected}\n                onSelect={() => {\n                  tf.remove.tableColumn();\n                  editor.tf.focus();\n                }}\n              >\n                <XIcon />\n                Delete column\n              </DropdownMenuItem>\n            </DropdownMenuSubContent>\n          </DropdownMenuSub>\n\n          <DropdownMenuItem\n            className=\"min-w-[180px]\"\n            disabled={!tableSelected}\n            onSelect={() => {\n              tf.remove.table();\n              editor.tf.focus();\n            }}\n          >\n            <Trash2Icon />\n            Delete table\n          </DropdownMenuItem>\n        </DropdownMenuGroup>\n      </DropdownMenuContent>\n    </DropdownMenu>\n  );\n}\n\nfunction TablePicker() {\n  const { editor, tf } = useEditorPlugin(TablePlugin);\n\n  const [tablePicker, setTablePicker] = React.useState({\n    grid: Array.from({ length: 8 }, () => Array.from({ length: 8 }).fill(0)),\n    size: { colCount: 0, rowCount: 0 },\n  });\n\n  const onCellMove = (rowIndex: number, colIndex: number) => {\n    const newGrid = [...tablePicker.grid];\n\n    for (let i = 0; i < newGrid.length; i++) {\n      for (let j = 0; j < newGrid[i].length; j++) {\n        newGrid[i][j] =\n          i >= 0 && i <= rowIndex && j >= 0 && j <= colIndex ? 1 : 0;\n      }\n    }\n\n    setTablePicker({\n      grid: newGrid,\n      size: { colCount: colIndex + 1, rowCount: rowIndex + 1 },\n    });\n  };\n\n  return (\n    <div\n      className=\"flex! m-0 flex-col p-0\"\n      onClick={() => {\n        tf.insert.table(tablePicker.size, { select: true });\n        editor.tf.focus();\n      }}\n      role=\"button\"\n    >\n      <div className=\"grid size-[130px] grid-cols-8 gap-0.5 p-1\">\n        {tablePicker.grid.map((rows, rowIndex) =>\n          rows.map((value, columIndex) => (\n            <div\n              key={`(${rowIndex},${columIndex})`}\n              className={cn(\n                'col-span-1 size-3 border border-solid bg-secondary',\n                !!value && 'border-current'\n              )}\n              onMouseMove={() => {\n                onCellMove(rowIndex, columIndex);\n              }}\n            />\n          ))\n        )}\n      </div>\n\n      <div className=\"text-center text-current text-xs\">\n        {tablePicker.size.rowCount} x {tablePicker.size.colCount}\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:ui"
    },
    {
      "path": "src/registry/ui/table-icons.tsx",
      "content": "'use client';\n\nimport type { LucideProps } from 'lucide-react';\n\nexport function BorderAllIcon(props: LucideProps) {\n  return (\n    <svg\n      fill=\"none\"\n      height=\"15\"\n      viewBox=\"0 0 15 15\"\n      width=\"15\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      {...props}\n    >\n      <title>Border All</title>\n      <path\n        clipRule=\"evenodd\"\n        d=\"M0.25 1C0.25 0.585786 0.585786 0.25 1 0.25H14C14.4142 0.25 14.75 0.585786 14.75 1V14C14.75 14.4142 14.4142 14.75 14 14.75H1C0.585786 14.75 0.25 14.4142 0.25 14V1ZM1.75 1.75V13.25H13.25V1.75H1.75Z\"\n        fill=\"currentColor\"\n        fillRule=\"evenodd\"\n      />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"5\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"3\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"5\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"3\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"9\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"11\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"9\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"11\" />\n    </svg>\n  );\n}\n\nexport function BorderBottomIcon(props: LucideProps) {\n  return (\n    <svg\n      fill=\"none\"\n      height=\"15\"\n      viewBox=\"0 0 15 15\"\n      width=\"15\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      {...props}\n    >\n      <title>Border Bottom</title>\n      <path\n        clipRule=\"evenodd\"\n        d=\"M1 13.25L14 13.25V14.75L1 14.75V13.25Z\"\n        fill=\"currentColor\"\n        fillRule=\"evenodd\"\n      />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"5\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"5\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"3\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"3\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"1\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"1\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"5\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"5\" y=\"1\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"3\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"3\" y=\"1\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"9\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"9\" y=\"1\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"11\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"11\" y=\"1\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"9\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"9\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"11\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"11\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"5\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"3\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"7\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"1\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"9\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"11\" />\n    </svg>\n  );\n}\n\nexport function BorderLeftIcon(props: LucideProps) {\n  return (\n    <svg\n      fill=\"none\"\n      height=\"15\"\n      viewBox=\"0 0 15 15\"\n      width=\"15\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      {...props}\n    >\n      <title>Border Left</title>\n      <path\n        clipRule=\"evenodd\"\n        d=\"M1.75 1L1.75 14L0.249999 14L0.25 1L1.75 1Z\"\n        fill=\"currentColor\"\n        fillRule=\"evenodd\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 10 7)\"\n        width=\"1\"\n        x=\"10\"\n        y=\"7\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 10 13)\"\n        width=\"1\"\n        x=\"10\"\n        y=\"13\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 12 7)\"\n        width=\"1\"\n        x=\"12\"\n        y=\"7\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 12 13)\"\n        width=\"1\"\n        x=\"12\"\n        y=\"13\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 8 7)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"7\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 14 7)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"7\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 8 13)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"13\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 14 13)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"13\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 8 5)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"5\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 14 5)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"5\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 8 3)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"3\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 14 3)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"3\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 8 9)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"9\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 14 9)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"9\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 8 11)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"11\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 14 11)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"11\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 6 7)\"\n        width=\"1\"\n        x=\"6\"\n        y=\"7\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 6 13)\"\n        width=\"1\"\n        x=\"6\"\n        y=\"13\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 4 7)\"\n        width=\"1\"\n        x=\"4\"\n        y=\"7\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 4 13)\"\n        width=\"1\"\n        x=\"4\"\n        y=\"13\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 10 1)\"\n        width=\"1\"\n        x=\"10\"\n        y=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 12 1)\"\n        width=\"1\"\n        x=\"12\"\n        y=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 8 1)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 14 1)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 6 1)\"\n        width=\"1\"\n        x=\"6\"\n        y=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(90 4 1)\"\n        width=\"1\"\n        x=\"4\"\n        y=\"1\"\n      />\n    </svg>\n  );\n}\n\nexport function BorderNoneIcon(props: LucideProps) {\n  return (\n    <svg\n      fill=\"none\"\n      height=\"15\"\n      viewBox=\"0 0 15 15\"\n      width=\"15\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      {...props}\n    >\n      <title>Border None</title>\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"5.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"5.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"3.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"3.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"7.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"13.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"1.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"7.025\" />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        width=\"1\"\n        x=\"13\"\n        y=\"13.025\"\n      />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"1.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"5\" y=\"7.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"5\" y=\"13.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"5\" y=\"1.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"3\" y=\"7.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"3\" y=\"13.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"3\" y=\"1.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"9\" y=\"7.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"9\" y=\"13.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"9\" y=\"1.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"11\" y=\"7.025\" />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        width=\"1\"\n        x=\"11\"\n        y=\"13.025\"\n      />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"11\" y=\"1.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"9.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"13\" y=\"9.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"7\" y=\"11.025\" />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        width=\"1\"\n        x=\"13\"\n        y=\"11.025\"\n      />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"5.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"3.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"7.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"13.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"1.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"9.025\" />\n      <rect fill=\"currentColor\" height=\"1\" rx=\".5\" width=\"1\" x=\"1\" y=\"11.025\" />\n    </svg>\n  );\n}\n\nexport function BorderRightIcon(props: LucideProps) {\n  return (\n    <svg\n      fill=\"none\"\n      height=\"15\"\n      viewBox=\"0 0 15 15\"\n      width=\"15\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      {...props}\n    >\n      <title>Border Right</title>\n      <path\n        clipRule=\"evenodd\"\n        d=\"M13.25 1L13.25 14L14.75 14L14.75 1L13.25 1Z\"\n        fill=\"currentColor\"\n        fillRule=\"evenodd\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 5 7)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 5 13)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 3 7)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 3 13)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 7 7)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 1 7)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 7 13)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 1 13)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 7 5)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 1 5)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 7 3)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 1 3)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 7 9)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 1 9)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 7 11)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 1 11)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 9 7)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 9 13)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 11 7)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 11 13)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 5 1)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 3 1)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 7 1)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 1 1)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 9 1)\"\n        width=\"1\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"matrix(0 1 1 0 11 1)\"\n        width=\"1\"\n      />\n    </svg>\n  );\n}\n\nexport function BorderTopIcon(props: LucideProps) {\n  return (\n    <svg\n      fill=\"none\"\n      height=\"15\"\n      viewBox=\"0 0 15 15\"\n      width=\"15\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      {...props}\n    >\n      <title>Border Top</title>\n      <path\n        clipRule=\"evenodd\"\n        d=\"M14 1.75L1 1.75L1 0.249999L14 0.25L14 1.75Z\"\n        fill=\"currentColor\"\n        fillRule=\"evenodd\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 8 10)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"10\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 2 10)\"\n        width=\"1\"\n        x=\"2\"\n        y=\"10\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 8 12)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"12\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 2 12)\"\n        width=\"1\"\n        x=\"2\"\n        y=\"12\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 8 8)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"8\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 8 14)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"14\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 2 8)\"\n        width=\"1\"\n        x=\"2\"\n        y=\"8\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 2 14)\"\n        width=\"1\"\n        x=\"2\"\n        y=\"14\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 10 8)\"\n        width=\"1\"\n        x=\"10\"\n        y=\"8\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 10 14)\"\n        width=\"1\"\n        x=\"10\"\n        y=\"14\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 12 8)\"\n        width=\"1\"\n        x=\"12\"\n        y=\"8\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 12 14)\"\n        width=\"1\"\n        x=\"12\"\n        y=\"14\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 6 8)\"\n        width=\"1\"\n        x=\"6\"\n        y=\"8\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 6 14)\"\n        width=\"1\"\n        x=\"6\"\n        y=\"14\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 4 8)\"\n        width=\"1\"\n        x=\"4\"\n        y=\"8\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 4 14)\"\n        width=\"1\"\n        x=\"4\"\n        y=\"14\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 8 6)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"6\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 2 6)\"\n        width=\"1\"\n        x=\"2\"\n        y=\"6\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 8 4)\"\n        width=\"1\"\n        x=\"8\"\n        y=\"4\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 2 4)\"\n        width=\"1\"\n        x=\"2\"\n        y=\"4\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 14 10)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"10\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 14 12)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"12\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 14 8)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"8\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 14 14)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"14\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 14 6)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"6\"\n      />\n      <rect\n        fill=\"currentColor\"\n        height=\"1\"\n        rx=\".5\"\n        transform=\"rotate(-180 14 4)\"\n        width=\"1\"\n        x=\"14\"\n        y=\"4\"\n      />\n    </svg>\n  );\n}\n",
      "type": "registry:ui"
    }
  ],
  "meta": {
    "docs": [
      {
        "route": "/docs/table"
      }
    ],
    "examples": [
      "table-demo"
    ]
  },
  "type": "registry:ui"
}