9 lines
705 B
JavaScript
9 lines
705 B
JavaScript
"use client";
|
|
import { createFluentFontIcon } from '../../utils/fonts/createFluentFontIcon';
|
|
export const SystemFilled = ( /*#__PURE__*/createFluentFontIcon("SystemFilled", "", 2, undefined));
|
|
export const SystemRegular = ( /*#__PURE__*/createFluentFontIcon("SystemRegular", "", 2, undefined));
|
|
export const System20Regular = ( /*#__PURE__*/createFluentFontIcon("System20Regular", "", 1, 20));
|
|
export const System20Filled = ( /*#__PURE__*/createFluentFontIcon("System20Filled", "", 0, 20));
|
|
export const System24Regular = ( /*#__PURE__*/createFluentFontIcon("System24Regular", "", 1, 24));
|
|
export const System24Filled = ( /*#__PURE__*/createFluentFontIcon("System24Filled", "", 0, 24));
|