bastienrobert/la-ferme

View on GitHub
packages/components/src/icons/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Colors } from '@/theme'

export type Icons =
  | 'brigade'
  | 'camera'
  | 'cross'
  | 'end'
  | 'lightning'
  | 'plus'

export interface IconProps {
  color?: Colors.IconColor
}