Skip to content

table-properties

property list • plist • spreadsheet • grid • dictionary • object • hash

Created:

v0.257.0

Last changed:

v0.257.0

Contributors:

danielbayley
html
<i data-lucide="table-properties"></i>
tsx
import { TableProperties } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-table-properties"></div>