9 lines
693 B
JavaScript
9 lines
693 B
JavaScript
"use client";
|
|
import { createFluentFontIcon } from '../../utils/fonts/createFluentFontIcon';
|
|
export const CheckFilled = ( /*#__PURE__*/createFluentFontIcon("CheckFilled", "", 2, undefined));
|
|
export const CheckRegular = ( /*#__PURE__*/createFluentFontIcon("CheckRegular", "", 2, undefined));
|
|
export const Check20Regular = ( /*#__PURE__*/createFluentFontIcon("Check20Regular", "", 1, 20));
|
|
export const Check20Filled = ( /*#__PURE__*/createFluentFontIcon("Check20Filled", "", 0, 20));
|
|
export const Check24Regular = ( /*#__PURE__*/createFluentFontIcon("Check24Regular", "", 1, 24));
|
|
export const Check24Filled = ( /*#__PURE__*/createFluentFontIcon("Check24Filled", "", 0, 24));
|