Skip to content

tic-tac-toe

game • board • grid • strategy • noughts and crosses

Created:

v1.43.0

Last changed:

v1.43.0

Contributors:

karsa-mistmere
html
<script>
import { createIcons, TicTacToe } from 'lucide';

createIcons({
  icons: {
    TicTacToe
  }
});
</script>

<i data-lucide="tic-tac-toe"></i>  
tsx
import { TicTacToe } from 'lucide-react';

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

export default App;
vue
<script setup>
import { TicTacToe } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="tic-tac-toe"></lucide-icon>
html
<div class="icon-tic-tac-toe"></div>

See this icon in action

Bug
Feature
Tic
112
8
11