Skip to content

table-rows-split

spreadsheet • grid • cut • break • divide • separate • segment

Created:

v0.336.0

Last changed:

v0.336.0

Contributors:

chessurisme
html
<i data-lucide="table-rows-split"></i>
tsx
import { TableRowsSplit } from 'lucide-react';

const App = () => {
  return (
    <TableRowsSplit />
  );
};

export default App;
vue
<script setup>
  import { TableRowsSplit } from 'lucide-vue-next';
</script>

<template>
  <TableRowsSplit />
</template>
svelte
<script>
import { TableRowsSplit } from 'lucide-svelte';
</script>

<TableRowsSplit />
tsx
import { TableRowsSplit } from 'lucide-preact';

const App = () => {
  return (
    <TableRowsSplit />
  );
};

export default App;
tsx
import { TableRowsSplit } from 'lucide-solid';

const App = () => {
  return (
    <TableRowsSplit />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, TableRowsSplit } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ TableRowsSplit })
  ],
})

// app.component.html
<lucide-icon name="table-rows-split"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-table-rows-split"></div>