ant-design/components/icon/utils.ts

9 lines
292 B
TypeScript
Raw Normal View History

2018-08-15 17:21:02 +08:00
// These props make sure that the SVG behaviours like general text.
// Reference: https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4
export const svgBaseProps = {
width: '1em',
height: '1em',
fill: 'currentColor',
['aria-hidden']: 'true',
};