dmeo-app
This commit is contained in:
parent
5e4525e979
commit
e63f0bc7a7
242 changed files with 22660 additions and 5953 deletions
15
src/components/base/icons/line/arrows/chevron-down/index.tsx
Normal file
15
src/components/base/icons/line/arrows/chevron-down/index.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react';
|
||||
import data from './data.json';
|
||||
import IconBase from '@/components/base/icons/IconBase';
|
||||
import type { IconBaseProps, IconData } from '@/components/base/icons/IconBase';
|
||||
|
||||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>((props, ref) => (
|
||||
<IconBase {...props} ref={ref} data={data as IconData} />
|
||||
));
|
||||
|
||||
Icon.displayName = 'ChevronDown';
|
||||
|
||||
export default Icon;
|
||||
Loading…
Add table
Add a link
Reference in a new issue